Thanks for assisting.
I would like to have a textbox in Page1.
The Page2 has an iframe with src being a report url with a parameter.
When Page1 triggers Page2 I would like to pass the Page 1 textbox value to the Page 2 url parameter.
Page1 Textbox : <input type="text" text="Keyword" id="keyword" value="">
Page1 Trigger Page2 : TargetUrl="Page2.aspx"
Page 2
URL Parameter KEY
src="
&KEY = Page1 textbox (Keyword) value
I think in Page 2 I have to define a variable and the in Page 1 I have to pass the var by:
TargetUrl="Page2.aspx?Var=testvalue"
but i don't know how (code)
Please Assist!