标签:
1 为什么需要AJAX:
如果不用AJAX,进行表单提交时 会引起整个界面的刷新,不需要请求服务器的也刷新会占用时间。
AJAX局部异步刷新:局部 --只刷新一小部分;异步 --在AJAX请求服务器时页面不卡。
<video>播放视频:<video src="file/性感美女热舞大集合_超清.mp4" autoplay controls></video> (注:chrome不行)
<body> <form id="form1" runat="server"> <div> <video src="file/性感美女热舞大集合_超清.mp4" autoplay controls></video> </div> <div> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br /> <asp:TextBox ID="TextBox1" runat="server" Height="50px" TextMode="MultiLine" Width="142px"></asp:TextBox><br /> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /><br /> </div> </form> </body>
public partial class WebForm_Video : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { //读取文件内容 string path = Server.MapPath("~/Day6/file/comment.txt"); Label1.Text = File.ReadAllText(path); } protected void Button1_Click(object sender, EventArgs e) { //写入文件 string path = Server.MapPath("~/Day6/file/comment.txt"); File.AppendAllText(path,TextBox1.Text); } }
2 AJAX原理:
AJAX原理:(1)判断当前浏览器是否支持 XMLHttpRequest;
(2)发送post请求,
标签:
原文地址:http://www.cnblogs.com/adolphyang/p/4801534.html