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 ....

link|improve this question

the reason i need to avoid query string is that these url has been used by seo team and are indexed by google so adding a query string may cause url mismatch problems – karthi Nov 12 '11 at 6:04
feedback

7 Answers

up vote 1 down vote accepted

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

How to: Pass Values Between ASP.NET Web Pages

PreviousPage Property

link|improve this answer
feedback

You can use javascript to post data to you page or you can use hidden fields or cookies

link|improve this answer
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.

link|improve this answer
thank you..i dont have any idea regarding that .. will have a look at it now – karthi Nov 12 '11 at 5:57
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

link|improve this answer
@Ravi- its a client requirement that there should be no change in url so querystring should not be used..may be i should try hidden inputs..thanks for your feed back – karthi Nov 12 '11 at 5:53
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.

link|improve this answer
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:

<form  action="products.aspx" method="post">
...
<input type="hidden" id="field1" value="value1"/>
</form>

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:

<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("mainDiv").innerHTML=xmlhttp.responseText; //changing the menu
    }
  }
params="field1="+document.getElementById("field1").value;
xmlhttp.open("POST","products.aspx",true);
xmlhttp.send(params);
}
</script>
link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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