473,950 Members | 47,285 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

TextBox1.Text = Request.QuerySt ring in Page_Load - ASP.NET C#

1 New Member
I'm using CSharp/ASP.NET 2.0 and trying to create a simple search page that records the user query in the URL (so can be bookmark) and also re-writes the query int the original TextBox. This only works once; there after the old query gets re-written to the TextBox regardless of what is entered.

I think this is because I'm using the Page_Load event which may being fired, replacing the new query with the one in the current URL, between time I enter new Text and click button ... but not sure how else to do it.

Expand|Select|Wrap|Line Numbers
  1.  
  2. <!-- the search form -->
  3. <form id="form1" runat="server">
  4. <div>
  5. <asp:TextBox ID="TextBox1" runat="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
  6. <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /><br />
  7. <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
  8. </div>
  9. </form>
  10.  
Expand|Select|Wrap|Line Numbers
  1. /* event to re-load the page with the query terms in the URL
  2.  * but only works the first time when there is no value in the
  3.  * URL
  4.  */
  5. protected void Button1_Click(object sender, EventArgs e)
  6. {
  7. Response.Redirect("Default.aspx?q=" + TextBox1.Text, true);
  8. }
  9.  

Expand|Select|Wrap|Line Numbers
  1. // write the q value from URL to search box
  2. protected void Page_Load(object sender, EventArgs e)
  3. {
  4.   if (Request.QueryString["q"] != null)
  5.   {
  6.     TextBox1.Text = Request.QueryString["q"];
  7.   }
  8. }
  9.  
Advice?

Thanks!

Rick
Feb 13 '08 #1
0 14273

Sign in to post your reply or Sign up for a free account.

Similar topics

2
2021
by: Tom Youngquist | last post by:
I am trying to download a text file that my .NET page has just created based on entered parameters on the web page. Everything seems to work and the file is created. I am using the following code to start the download process: Response.Clear() Response.ContentType = "text/plain" Response.AppendHeader("Content-Disposition", "attachment; filename=" & fileName) Response.AppendHeader("Content-Description", "This is your Cost Journal...
4
1644
by: Steve | last post by:
Hi All, This problem is really annoying me, as I am sure there is a simple solution to it. If I try to read a querystring value in the Page_Load event and that querystring does not exist I get the error: Object reference not set to an instance of an object
3
2032
by: malcolm | last post by:
Inside of a Page class, how do I capture the Request object values before the Page_Load event is called of that Page? I have a situation where I have many server controls on a Page that get created in the constructor of my Page, but I need them to know about some info that get's set via the Page_Load from the Request (and even Session for that matter) thanks! Dave
1
1288
by: franklinbruce | last post by:
Hi all, I am passing a value from Javascript to a IFrame. when i tired to acces that value like request.querystring("id1") it says "name id1 is not declared" code as follow: --------------- javascript code:
4
4415
by: Tim::.. | last post by:
Can someone please tell me why this doesn't work! Error: Request is not available in this context Private rowID As Integer = Request.QueryString(ID) I need to have the variable rowID accessable by a number of other functions and subs but when I do the above I get the following error!
19
3574
by: Joe | last post by:
I have an aspx page (referred to here as page_1) with a datagrid whose first column contains hyperlinks. When a user clicks one of these hyperlinks, he will navigate to another aspx page (referred to here as page_2). I need to cache the value of the link's text (hyperlink.text property) so that I can use it in the page_load event of page_2. I've thought of using a hidden field and then calling Request.Form("hdnClickedLinkText") in the...
3
11469
by: james | last post by:
Hey Guys, Do you have any idea how to acces Request.QueryString in a MasterPage? I need to use it to modify my sitemap. My code is: public partial class MasterPage : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e)
3
1832
by: Sharon | last post by:
hello all, I was successfull in passing one value from first webpage to second webpage, but not sure how to pass three textbox values from the first page to the second page. Below is the code i was using to pass a single value First WebPage: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
4
3725
by: =?Utf-8?B?UGF1bA==?= | last post by:
This may be a stupid question but... How do I programmtically access the page's request.querystring value in a custom user control. I tried doing this in the page_load routine of the user control but I do not seem to be able to access the value? TIA.
0
10171
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
11191
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11366
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7443
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6231
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6352
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4965
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
4549
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3558
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.