Code behind read Java variable?

  • Thread starter Thread starter Dale
  • Start date Start date
D

Dale

Hi All-

I have a Javascript routine that sets a variable. I need to pass the
variable to my C# code behind page (or bind it). Is this possible?

Thanks in advance,

Dale Lundgren
 
I have a Javascript routine that sets a variable. I need to pass the
variable to my C# code behind page (or bind it). Is this possible?

Easiest way is to place the variable in a hidden textbox on your form so
that it gets submitted along with the rest of Request.Form during PostBack.
 
Back
Top