每个WEB程序在(网页每次刷新的时候)加载的时候都会调用Page_Load事件
在服务器方不能控件客户的IE浏览器.所以在服务器方不能关闭用户的IE浏览器,
但可能通过脚本来实现。 直接在HTML的所在加入此属性 OnClick="window.close()"
或者在.aspx.cs中加入:this.btnClose.Attributes .Add("onclick","window.close();");
本课的重点就是
ASP.net的对象:1、Request:从客户端向服务器发送.
2、Response:从服务器向客户端传送.
表单中的method属性的设置不一样时 就要用不同的引用办法
<form action="WebForm1.aspx" method="get"></form>
在.aspx.cs中调用的时候有两种方法:
每一种:[]相当于索引器引用
string userName=Request["theUserName"].ToString ();
string userPwd=Request["theUserPwd"].ToString();
每二种:
string userName=Request.Form .Get ("theUserName").ToString ();
string userPwd=Request.Form .Get ("theUserPwd").ToString ();
<form action="WebForm1.aspx" method="post"></from>
调用:
string userName=Request.QueryString ["theUserName"].ToString ();
string userPwd=Request.QueryString["theUserPwd"].ToString ();
这两种表单
post会型成一个集合传给服务器,而Get就不是 它会显在返回的地址栏当中去。
pageLayout属性 的作用 :GridLayout是绝对位置其中的居中会
flowLayout是相对位置。
Response.Redirect("webForm2.aspx?userName="+username+"&userPwd="+userPwd);
可以连接到另一个网页,并传入信息,前提就method=got;
接收方:string userName=Request.QueryString["userName"].ToString();
_viewstate 是能保存页面的相关信息,能通过服务器处理后再返回给用户。
这个向用户返回时候就像C#中的Console.witerline()差不多呢:
Response.Write ("登录的用户名为:"+userName+";密码为:"+userPwd);