I created a web application in which there are two menus which loads the same page .. i need to check a condition in the page so that i can load diff data based on the variable passed to this page but i dont want to use query string since it can change my url from http://xxx.com/products.aspx to http://xxx.com/products.aspx?field1=value1..how can i do this without query string or session..i need to pass different values on clicking different links in masterpage..will cross posting help ....
feedback
|
|
Using the reference in the PreviousPage property, you can search for controls on the source page and extract their value. You typically do this with the FindControl method. use PreviousPage.FindControl("yourcontrolname") these link may help you | ||||
|
feedback
|
|
You can use javascript to post data to you page or you can use hidden fields or cookies | |||
|
feedback
|
|
Along with the two other answers if the URL is of concern with query string parameters (and you dont want sessions - eg due to in-proc storage), then one alternative to increase your rank with web-crawlers is ASP.NET Routing. | |||
feedback
|
|
you can pass values in many ways. using sessions, cookies, query string, hidden inputs. i personally feel storing query string for menu navigation its not problem, until unless he comes to know exact querystring parameters. you can try this other methods, Passing Values between webforms | |||
feedback
|
|
Try window.location.hash: https://developer.mozilla.org/en/DOM/window.location You could store data after the # in a URL. This is what Twitter does. | |||
|
feedback
|
|
If your problem with query string is just url changing, you can use post method to send data with using a hidden input. like this:
Or use ajax. You can send http request by means of javascript with ajax. In this case there are no url changing or something. This is an example:
| |||
|
feedback
|
|
I would suggest looking into canonical links. Using this, you can have two different URL forms, for example bob.aspx and bob.aspx?input=whatever and search engines will only include one of them (e.g. the first) in its index. | |||
|
feedback
|