G
Guest
I set ndi in a repost of a page:
window.location.href=
'../Test/test.aspx' +
'?ndi=' +
theform.domain_SELECT.options.selectedIndex;
In the test.aspx.cs code-behind, I test if ndi is set as
if ( Request [ "ndi" ] != null )
How can I cause ndi to become null once that I've tested it and found it
existed? A Session variable is cleared by Session.Contents.Remove. Is there
an equivalent for a Request variable?
TIA
window.location.href=
'../Test/test.aspx' +
'?ndi=' +
theform.domain_SELECT.options.selectedIndex;
In the test.aspx.cs code-behind, I test if ndi is set as
if ( Request [ "ndi" ] != null )
How can I cause ndi to become null once that I've tested it and found it
existed? A Session variable is cleared by Session.Contents.Remove. Is there
an equivalent for a Request variable?
TIA