How do you add arguments to an ASP button PostBackUrl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T01:33:54Zhttp://stackoverflow.com/feeds/question/204733http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl2How do you add arguments to an ASP button PostBackUrl?Anders2008-10-15T13:39:51Z2008-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#2047760Answer by John Boker for How do you add arguments to an ASP button PostBackUrl?John Boker2008-10-15T13:51:11Z2008-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#2048160Answer by Andy May for How do you add arguments to an ASP button PostBackUrl?Andy May2008-10-15T14:02:54Z2008-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#2049173Answer by Noffie for How do you add arguments to an ASP button PostBackUrl?Noffie2008-10-15T14:26:22Z2008-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><%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>
</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#2049600Answer by Anders for How do you add arguments to an ASP button PostBackUrl?Anders2008-10-15T14:36:01Z2008-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
<div class="gsSearch">
<asp:TextBox ID="searchbox" runat="server"></asp:TextBox>
<asp:Button ID="searchbutton" runat="server" Text="search"
UseSubmitBehavior="true" PostBackUrl="~/search.aspx" />
</div>
</code></pre>
http://stackoverflow.com/questions/204733/how-do-you-add-arguments-to-an-asp-button-postbackurl/205052#2050520Answer by stephenbayer for How do you add arguments to an ASP button PostBackUrl?stephenbayer2008-10-15T14:58:25Z2008-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
<div class="gsSearch">
<asp:TextBox ID="searchbox" runat="server"></asp:TextBox>
<asp:Button ID="searchbutton" runat="server" Text="search"
UseSubmitBehavior="true" PostBackUrl="~/search.aspx" />
</div>
</code></pre>