admin管理员组文章数量:1345164
I am using .NET framework 1.1 with C#. My problem description is given below.
- I have server side textbox control with id:= txtFromDate. view state is enabled and its readonly.
- when page loaded for the first time i am setting current date value in above textbox.
- after that I change the value of textbox with jQuery.
- then posting back the page using jQuery with some __EVENTTARGET parameters.
- I am using this changed textbox value in my code behind.
I have developed code in window XP machine 32 bit with 1.1 framework. But now I have put entire site on windows server 2008 R2 edition (64bit) in .NET 2.0 application pool
Problem: it works fine on development machine. but in windows server 2008 change in textbox value by jQuery is not being reflected in code behind. it retains old value which I assign when page gets loaded first time.
I want to run this application as it runs on my development machine. In short I want to get changed value of textbox in codebehind on windows server 2008 machine too.
Thanks.
I am using .NET framework 1.1 with C#. My problem description is given below.
- I have server side textbox control with id:= txtFromDate. view state is enabled and its readonly.
- when page loaded for the first time i am setting current date value in above textbox.
- after that I change the value of textbox with jQuery.
- then posting back the page using jQuery with some __EVENTTARGET parameters.
- I am using this changed textbox value in my code behind.
I have developed code in window XP machine 32 bit with 1.1 framework. But now I have put entire site on windows server 2008 R2 edition (64bit) in .NET 2.0 application pool
Problem: it works fine on development machine. but in windows server 2008 change in textbox value by jQuery is not being reflected in code behind. it retains old value which I assign when page gets loaded first time.
I want to run this application as it runs on my development machine. In short I want to get changed value of textbox in codebehind on windows server 2008 machine too.
Thanks.
Share Improve this question edited Feb 13, 2013 at 6:31 Dharmesh asked Feb 13, 2013 at 6:19 DharmeshDharmesh 9734 gold badges15 silver badges26 bronze badges 2- And you did all of that without any code? – antonijn Commented Feb 13, 2013 at 7:05
- posting some code would be helpful – iJade Commented Feb 13, 2013 at 14:12
5 Answers
Reset to default 6Instead of using txtFromDate.Text I used Request.Form[txtFromDate.ClientID] and problem got solved.
changes you make to the controls on client side are not accessible to the code behind at the server, unless those changes are made to the values of input controls. so, youu can also use hiddenfield along with label which youu want to change in javascript/ Jquery then, store the new label value in hiddenfield as well then, instead of reading value from label in codebehind, read it from hiddenfield.
<asp:hiddenfied id="hdnLblValue" runat="server"/>
Need to Keep in Mind
If any Server Control Example: TextBox. is Disabled or ReadOnly from Aspx Page or Code behind.
It's value is being changed from JQuery or Javascipt.
You try to get the changed value of this control from code behind then you will never get it.
When you post back this control then server will validate the property (If it is Disabled or ReadOnly then server will not entertain this control's changed value.
You Need to use hidden field and populate this hidden field with changed value of this control.
<asp:HiddenField runat="server" ID="hdnTextBoxValue"/>
You need to set the changed value by JQuery or Javascript to hidden Field and get the value from Code behind.
Although you can always use set get method to store the values from java script ... But here is some simple way to solve it...
case 1 - If control is just for storing purpose , put display : none in it's style and make visible = true in the attribute of the control.
case 2 - if control is to be displayed but in disabled mode put ReadOnly="true" instead of Enabled = true
eg..
<asp:textbox runat="server" ID="textbox1" Enabled="false"></asp:textbox> will not work
<asp:textbox runat="server" ID="textbox2" ReadOnly="true"></asp:textbox> will work
clientIDMode="Static"
will work perfectly.
本文标签: javascripttextbox value change not being reflected in code behind cStack Overflow
版权声明:本文标题:javascript - textbox value change not being reflected in code behind c# - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743806359a2542252.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论