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?
|
|
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.
That is one way. There are some shortcuts too, such as using the PreviousPageType directive at the top of your search.aspx page:
More details on how to use that, as well as the first method, can be found here: |
||
|
|
|
|
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 |
||||||||
|
|
|
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 jQuery)
|
||
|
|
|
|
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 Master rather than PreviousPage.
|
|||
|
|
|
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. I know that the FindControl returns the type Control.. maybe you can wait to box it into a specific type.
|
||
|
|
