How do you add arguments to an ASP button PostBackUrl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:33:54Z http://stackoverflow.com/feeds/question/204733 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl 2 How do you add arguments to an ASP button PostBackUrl? Anders 2008-10-15T13:39:51Z 2008-10-15T14:58:25Z <p>I am constructing a search page with a textbox and a button for now, and probably a dropdown to filter results later on. I have my button's PostBackUrl set to my search page (~/search.aspx). Is there an easy way to pass the value in the text box to the search page?</p> http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/204776#204776 0 Answer by John Boker for How do you add arguments to an ASP button PostBackUrl? John Boker 2008-10-15T13:51:11Z 2008-10-15T13:51:11Z <p>you may be able to use useSubmitBehavior="true" and put a method="get" on the form. that way it will use the browsers submit behavior and will append the values of the textbox's to the query string</p> http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/204816#204816 0 Answer by Andy May for How do you add arguments to an ASP button PostBackUrl? Andy May 2008-10-15T14:02:54Z 2008-10-15T14:02:54Z <p>You could also use some JavaScript to accomplish this by catching the Enter key keypress event in the textbox field. You could expand this to perform validation of the text in the textbox as well. (This example is using <a href="http://jquery.com" rel="nofollow">jQuery</a>)</p> <pre><code>$(document).ready(function(){ // Event Handlers to allow searching after pressing Enter key $("#myTextBoxID").bind("keypress", function(e){ switch (e.keyCode){ case (13): // Execute code here ... break; default: break; } }); }); </code></pre> http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/204917#204917 3 Answer by Noffie for How do you add arguments to an ASP button PostBackUrl? Noffie 2008-10-15T14:26:22Z 2008-10-15T14:26:22Z <p>If you have the PostBackUrl set on your button, then the search box field on your first page, and any other form fields on that page, are already being posted to your search page. The trick is getting access to them in the code-behind for your search.aspx page.</p> <pre><code>if (Page.PreviousPage != null) { TextBox SourceTextBox = (TextBox)Page.PreviousPage.FindControl("TextBox1"); if (SourceTextBox != null) { Label1.Text = SourceTextBox.Text; } } </code></pre> <p>That is one way. There are some shortcuts too, such as using the PreviousPageType directive at the top of your search.aspx page:</p> <pre><code>&lt;%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %&gt; </code></pre> <p>More details on how to use that, as well as the first method, can be found here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms178139.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178139.aspx</a></p> http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/204960#204960 0 Answer by Anders for How do you add arguments to an ASP button PostBackUrl? Anders 2008-10-15T14:36:01Z 2008-10-15T14:49:41Z <p>Solved the issue, the previous page is "default.aspx", however the control doesn't reside on that page. Since I use master pages, I have to select <strong>Master</strong> rather than <strong>PreviousPage</strong>.</p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If PreviousPage IsNot Nothing Then Dim txtBoxSrc As New TextBox txtBoxSrc = CType(Master.FindControl("searchbox"), TextBox) If txtBoxSrc IsNot Nothing Then MsgBox(txtBoxSrc.Text) End If End If End Sub &lt;div class="gsSearch"&gt; &lt;asp:TextBox ID="searchbox" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Button ID="searchbutton" runat="server" Text="search" UseSubmitBehavior="true" PostBackUrl="~/search.aspx" /&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/205052#205052 0 Answer by stephenbayer for How do you add arguments to an ASP button PostBackUrl? stephenbayer 2008-10-15T14:58:25Z 2008-10-15T14:58:25Z <p>I have no idea why you would get a null reference in that code, bare with my VB non-knowledge, but I'm going to try to make a slight modification you might be able to try. </p> <p>I know that the FindControl returns the type Control.. maybe you can wait to box it into a specific type.</p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If PreviousPage IsNot Nothing Then Dim txtBoxSrc As New Control txtBoxSrc = PreviousPage.FindControl("searchbox") If txtBoxSrc IsNot Nothing Then MsgBox((CType(txtBoxSrc, TextBox)).Text) End If End If End Sub &lt;div class="gsSearch"&gt; &lt;asp:TextBox ID="searchbox" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Button ID="searchbutton" runat="server" Text="search" UseSubmitBehavior="true" PostBackUrl="~/search.aspx" /&gt; &lt;/div&gt; </code></pre>