当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > ASP.NET2.0中TextBox的两个有趣的属性

ASP.NET
FreeTextBox(版本3.1.6)在ASP.Net 2.0中使用方法
.NET 常用功能和代码小结
在 .NET Framework 2.0 中未处理的异常导致基于 ASP.NET 的应用程序意外退出
asp.net IList查询数据后格式化数据再绑定控件
asp.net sql存储过程
asp.net 简单实现禁用或启用页面中的某一类型的控件
asp.net(c#)获取内容第一张图片地址的函数
The remote procedure call failed and did not execute的解决办法
ASP.NET 在线文件管理
asp.net 读取并修改config文件实现代码
ASP.NET Cookie 操作实现
asp.net Silverlight中的模式窗体
Silverlight中动态获取Web Service地址
asp.net Silverlight应用程序中获取载体aspx页面参数
asp.net 水晶报表隔行换色实现方法
asp.net 获取Gridview隐藏列的值
手动把asp.net的类生成dll文件的方法
asp.net 使用ObjectDataSource控件在ASP.NET中实现Ajax真分页
动态指定任意类型的ObjectDataSource对象的查询参数
asp.net Md5的用法小结

ASP.NET2.0中TextBox的两个有趣的属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 47 ::
收藏到网摘: n/a

    在以前的ASP.NET 1.x版本中,设置为ReadOnly的TextBox控件在客户端更改了值后,在服务器端仍然可以得到修改后的值,但在ASP.NET 2.0中,这种做法已经限制。这是为了提高应用程序安全性所考虑的。下面就是TextBox控件获得数据的内部方法,由此可以看出ReadOnly的限制:
  
  protected virtual bool LoadPostData(string postDataKey, NameValueCollection postCollection)
  {
   base.ValidateEvent(postDataKey);
   string text1 = this.Text;
   string text2 = postCollection[postDataKey];
   if (!this.ReadOnly && !text1.Equals(text2, StringComparison.Ordinal))
   {
    this.Text = text2;
    return true;
   }
   return false;
  }
  
    这里限制的只是Text属性,而没有限制提交数据的名称/值的NameValueCollection,因此,通过Request["表单名称"]的方法仍然可以得到值的。下面的例子充分说明了这一点,并且提供了既使用ReadOnly,又可以通过Text属性获得值的方法:
  
  <%@ Page Language="C#" EnableViewState="false" %>
  
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  
  <script runat="server">
  
  protected void Button1_Click(object sender, EventArgs e)
  {
   Response.Write("<li>TextBox1 = " + TextBox1.Text);
   Response.Write("<li>TextBox2 = " + TextBox2.Text);
   Response.Write("<li>TextBox3 = " + TextBox3.Text);
   Response.Write("<li>Request.Form[TextBox1] = " + Request.Form[TextBox1.UniqueID]);
   Response.Write("<li>Request.Form[TextBox2] = " + Request.Form[TextBox2.UniqueID]);
   Response.Write("<li>Request.Form[TextBox3] = " + Request.Form[TextBox3.UniqueID]);
  }
  
  protected void Page_Load(object sender, EventArgs e)
  {
   TextBox3.Attributes.Add("readonly", "readonly");
  }
  </script>
  
  <script type="text/javascript">
  //<![CDATA[
  function SetNewValue()
  {
   document.getElementById('<%=TextBox1.ClientID %>').value = "TextBox1 new Value";
   document.getElementById('<%=TextBox2.ClientID %>').value = "TextBox2 new Value";
   document.getElementById('<%=TextBox3.ClientID %>').value = "TextBox3 new Value";
  }
  //]]>
  </script>
  
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
  <title>ASP.NET 2.0中TextBox控件与ReadOnly和Enabled属性</title>
  </head>
  <body>
  <form id="form1" runat="server">
   <span>TextBox1 ReadOnly:</span>
   <asp:TextBox ID="TextBox1" runat="server" ReadOnly="True" Text="TextBox1 Old Value"></asp:TextBox><br />
   <span>TextBox2 Enabled:</span>
   <asp:TextBox ID="TextBox2" runat="server" Enabled="False" Text="TextBox2 Old Value"></asp:TextBox><br />
   <span>TextBox3 ReadOnly:</span>
   <asp:TextBox ID="TextBox3" runat="server" Text="TextBox3 Old Value"></asp:TextBox><br />
   <br />
   <asp:Button ID="Button2" runat="server" Text="修改新值" OnClientClick="SetNewValue();return false;" />
   <asp:Button ID="Button1" runat="server" Text="提交" OnClick="Button1_Click" />
  </form>
  </body>
  </html>
  
    对于disabled的TextBox,在服务器端不能得到修改的值,如果实在要用这个属性,那之后使用隐藏表单域的方法来实现了