EXAMPLE
<asp:TextBox ID="txbx" runat="Server" Text="1" Enabled="false" />
A textbox with value
'1'
is set to disabled.The texbox value is updated to
'2'
using javascript.When posted to the server the intial value
'1'
is used.
I have tried overwriting this functionality with the following VB Code:
Page.Form.SubmitDisabledControls = True
QUESTION
Why doesn't the updated value post to the server?
NOTES
The updated value post correctly '2'
if enabled="true"
<asp:TextBox ID="txbx" runat="Server" Text="1" Enabled="true" />