ASP.NET with jQueryUI: text box value is getting as null in Button click event - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T10:09:14Z http://stackoverflow.com/feeds/question/876660 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/876660/asp-net-with-jqueryui-text-box-value-is-getting-as-null-in-button-click-event 0 ASP.NET with jQueryUI: text box value is getting as null in Button click event Shyju 2009-05-18T07:56:07Z 2009-11-08T12:00:09Z <p>I have an ASP.NET page where I have a button When a user clicks on the button,I will check whether the user has logged in or not.If not logged in I will show a modal popup to login (using jQueryUI). I have placed one textbox(txtPassword) and one button(btnLogin) control in the Div which will be shown by the jQueryDialog.But in btnLogin's Click event, I am not able to read the Text value entered in the textbox txtPassword</p> <p>The below is my code</p> <pre><code> &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;br /&gt; &lt;asp:TextBox ID="txtModelId" runat="server" Text=""&gt;&lt;/asp:TextBox&gt;&lt;br /&gt; &lt;asp:Button ID="btnGo" runat="server" Text="Go" OnClick="btnGo_Click" /&gt; &lt;br /&gt; &lt;asp:Label ID="lblUserMsg" runat="server" Text="Label"&gt;&lt;/asp:Label&gt;&lt;/div&gt; &lt;div id="divContentHolder"&gt; &lt;div class="demo"&gt; &lt;div id="dialog" title="Login with your TradeIn Account"&gt; &lt;p id="validateTips"&gt;Enter your EmailId &amp; password&lt;/p&gt; &lt;fieldset&gt; &lt;label for="email"&gt;Email&lt;/label&gt; &lt;asp:TextBox ID="txtEmail" CssClass="text ui-widget-content ui-corner-all" runat="server" &gt;&lt;/asp:TextBox&gt; &lt;label for="password"&gt; &lt;asp:TextBox ID="TextBox1" runat="server" Text="sample"&gt;&lt;/asp:TextBox&gt;Password&lt;/label&gt; &lt;asp:TextBox ID="txtPassword" CssClass="text ui-widget-content ui-corner-all" runat="server" &gt;&lt;/asp:TextBox&gt; &lt;asp:Button ID="btnLogin" runat="server" Text="Login" OnClick="btnLogin_Click" UseSubmitBehavior="false"/&gt; &lt;/fieldset&gt; &lt;/div&gt;&lt;!--dialog--&gt; &lt;/div&gt;&lt;!--demo--&gt; &lt;/div&gt;&lt;!--divContentHolder--&gt; &lt;/form&gt; </code></pre> <p>Server side Code</p> <pre><code>protected void btnGo_Click(object sender, EventArgs e) { CheckUserLoggedIn(); } private void CheckUserLoggedIn() { if (Session["username"] != null) { Response.Write("Logged in user"); ClientScript.RegisterHiddenField("isAuthenticated", "true"); } else { ClientScript.RegisterHiddenField("isAuthenticated", "false"); } } protected void btnLogin_Click(object sender, EventArgs e) { string txtSample= TextBox1.Text; // this is showing the value 'sample' string txtPass= txtPassword.Text; // this is showing null if (txtPass == "shyju") { Session["username"] = txtPassword.Text; Response.Redirect("TestingModal.aspx"); } } </code></pre> <p>My java script code to render the dialog</p> <p> $(function() {</p> <pre><code> var name = $("#name"), email = $("#email"), password = $("#password"), allFields = $([]).add(name).add(email).add(password), tips = $("#validateTips"); function updateTips(t) { tips.text(t).effect("highlight",{},1500); } function checkLength(o,n,min,max) { if ( o.val().length &gt; max || o.val().length &lt; min ) { o.addClass('ui-state-error'); updateTips("Length of " + n + " must be between "+min+" and "+max+"."); return false; } else { return true; } } function checkRegexp(o,regexp,n) { if ( !( regexp.test( o.val() ) ) ) { o.addClass('ui-state-error'); updateTips(n); return false; } else { return true; } } $("#dialog").dialog({ bgiframe: true, autoOpen: false, height: 300, modal: true, buttons: { 'Create an account': function() { var bValid = true; allFields.removeClass('ui-state-error'); bValid=true; if (bValid) { /*$('#users tbody').append('&lt;tr&gt;' + '&lt;td&gt;' + name.val() + '&lt;/td&gt;' + '&lt;td&gt;' + email.val() + '&lt;/td&gt;' + '&lt;td&gt;' + password.val() + '&lt;/td&gt;' + '&lt;/tr&gt;'); */ alert("Check User Credentials") $(this).dialog('close'); } }, Cancel: function() { $(this).dialog('close'); } }, close: function() { allFields.val('').removeClass('ui-state-error'); } }); $('#create-user').click(function() { $('#dialog').dialog('open'); }) .hover( function(){ $(this).addClass("ui-state-hover"); }, function(){ $(this).removeClass("ui-state-hover"); } ).mousedown(function(){ $(this).addClass("ui-state-active"); }) .mouseup(function(){ $(this).removeClass("ui-state-active"); }); var isAuthenticated = $("#isAuthenticated").val(); if (isAuthenticated &amp;&amp; isAuthenticated == "false") { // Display the modal dialog. $("#dialog").dialog("open"); } }); </code></pre> <p></p> <p>I had hard coded the text properties value of TextBox1 as 'sample' in the HTML part of my ASPX file .In button click event i am getting it.But the other textbox,txtPassword 's Text property is giving me null value</p> <p>Please guide me to go ahead</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/876660/asp-net-with-jqueryui-text-box-value-is-getting-as-null-in-button-click-event/876693#876693 0 Answer by TheVillageIdiot for ASP.NET with jQueryUI: text box value is getting as null in Button click event TheVillageIdiot 2009-05-18T08:07:28Z 2009-05-18T08:07:28Z <p>It is working perfectly fine dear!! (I've used your code only)</p>