摘要:
前台代码:View Code <html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title></title> <style type="text/css" > body div{ text-align:center} </style></head><body> <form id="form1" runat="server& 阅读全文
摘要:
前台代码:View Code <html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title></title> <style type="text/css" > body div{ text-align:center} </style></head><body> <form id="form1" runat="server& 阅读全文
摘要:
在web请求的时候我们很多时候需要用到页面传值,但是有时候没有注意就会发生异常。例如有一个页面的地址为:../index.aspx它的后台文件里面有处理传值的语句:if (Request.QueryString["TypeID"] == null || Request.QueryString["TypeID"].ToString() =="")当你的地址../index.aspx?TypeID=1的时候不会发生异常 可以正常运行但是当你的地址为:../index.aspx的时候 你后台处理传值的语句为 if (Request.Quer 阅读全文
|