English 中文(简体)
只能从阅读或残疾文本箱控制到p.net获得价值。
原标题:can t get value from readonly or disabled textbox control asp.net

我利用电离层中的任何一个,在 as网中建立了一种不可逆的控制。

<asp:TextBox ID="txtStartDate" runat="server" enabled="false"></asp:TextBox>
or
<asp:TextBox ID="txtStartDate" runat="server" readonly="true"></asp:TextBox>

正在使用java字母拼凑,以填补客户方的文本箱。 当我试图在编码背后收回价值时,价值始终无效。

can anyone suggest a better way

最佳回答

引言

<asp:TextBox ID="txtStartDate" runat="server"></asp:TextBox>

背 景

 txtStartDate.Attributes.Add("readonly", "readonly");

Read more about How to retrieve read-only textbox s value in the code behind

问题回答

<asp:TextBox ID=“txtStartDate”prat=“server”改为“true”></asp:TextBox>

<>你可使用<>

txtStartDate.Text = Request.Form[txtStartDate.UniqueID];





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签