I'm working the linkbutton in a nested masterpage and want to pass a value to a new page .

What I want to do is once I click the link button. a new page will be open and keep the current page. in the same time, i can pass a value to the new open page.

how can I do without using Query String and session?

Thanks

link|improve this question

When you said 'new page will be open and keep the current page' did you want to say that the new page opens in new window (not a simple task, since LinkButton performs a postback), or you ment that the new page uses the same master page? – Goran Nov 14 '11 at 21:08
hi, Goran. Ya, it is open a new page but the current page will keep. for example. the current page is page1.aspx but once i click the linkbutton the page2.aspx will be open in new tab and page1.aspx will not close. – 1234567890 Nov 15 '11 at 2:31
hi, Goran. i had read a lot of other article. do u think is it possible that i use hyperlink to open a new page with passing a value too? ya,without session and querystring. – 1234567890 Nov 15 '11 at 2:32
1  
You could use PreviousPageType directive in new page to access public properties on previous page, but I don't think it would work if your link is on masterpage (so it could be clicked from any page using this master). – Goran Nov 16 '11 at 21:24
feedback

1 Answer

up vote 0 down vote accepted

If you have control over the HTML of the new page, you can include a hidden input field:

<input type="hidden" name="fieldname" value="your value">
link|improve this answer
hi, Dennis, i had read a lot of other article. do u think is it possible that i use hyperlink to open a new page with passing a value too? ya,without session and querystring. – 1234567890 Nov 15 '11 at 2:29
feedback

Your Answer

 
or
required, but never shown

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