Hi all,
in my application iam using hiddenfields for storing values.
during testing the application ,i found that every one can change the value of hiddenfield in browser and crack the application.
so iam thinking of hiddenfield with varibles using jquery.
currently iam setting the value of hiddenfield using c# like this
in load event
hddate.Value = newyear;
hfdate.Value = nyear;
hdfval.Value = fval;
here hddate,hfdate and hdfval are hiddenfields .
my requirement is declare varible using jquery.
like
var hddate;
var hfdate;
var hdfval;
how to set value to these varible in c# file like above
Regards
Baiju