Hello All,
I need to set below item value to session variable using Jquery.
And i need to send same session value to the next page2.
How i can append this value using session in Jquery.
Below my code :
$('#subtowerdd').change(function () {
var item = $("#subtowerdd option:selected").text();
}
HTML code :
<form class="form-horizontal" name="reportform" method="post" action="page2.aspx" id="reportform">
<select id="subtowerdd" name="subtowerdd" class="form-control validate[required]">
<options >
</form>
Thanks
Anand