1
我想在我的一個查詢中使用輸入爲html
的textbox
的值。所以我試圖像下面沒有得到代碼中的輸入文本值
string strInwardNO = Request.Form["TxtIwNo"];
和HTML是
<input id="TxtIwNo" type="text" runat="server" disabled="disabled" />
,但我沒有得到的值。什麼是錯在這裏
當我檢查調試時,我總是能得到它爲NULL
'Disabled'不會將控件的值發送到服務器端。請檢查:http://stackoverflow.com/questions/23308124/asp-net-text-doesnt-sends-value-when-disabled – MusicLovingIndianGirl
@ MusicLovingIndianGirl:我猜測它,但'只讀'會改變文本框的瞭望 – BNN
如果您的輸入被禁用,那麼它如何保存任何用戶值?如果它沒有任何用戶值,然後在您的後端設置默認值.. – Bharat