Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page create-quote.aspx. I want to open this page in different modes, depending on whether a querystring parameter is present or not.

My question is at which event should I check, If I have a querystring parameter or not. I think, it should be preinit, what do you say.

share|improve this question

3 Answers

up vote 8 down vote accepted

Probably the best choice is to handle them on Page_Load event:

http://msdn.microsoft.com/en-us/library/ms178472.aspx#lifecycle_events

share|improve this answer
+1 for the useful link – Toby May 13 '10 at 13:16
Really a useful link. – vaibhav May 14 '10 at 4:30

You're correct. You should check the querystring in the preinit event. Before the Initialzation there is a start fase where the request en response objects are created.

Reference: http://msdn.microsoft.com/en-us/library/ms178472.aspx

share|improve this answer
You CAN check in the preinit but it depends on what you want to do as to whether it is useful to check at this stage. If you wanted to set values on controls, e.g. make panels visible and invisible you could not do that yet, all you could do is set some property and then later on set the panels based on the value in the property. If this is what you are ging to do you might as well check the values at the time when you can do something with them. – Ben Robinson May 14 '10 at 13:12

I would check that in the Page_Load event something like this:

Page_Load  {

if(!Page.IsPostback) 
{


    if(Request.QueryString["id"] != null) 
     {
        // do whatever with the id value 
     }

}


}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.