I am trying to get the value of the posted textbox using jquery AJAX:
This is my code:
$(document).ready(function(){ $(\'#submitButton\').click(funct
Your ajax is using POST, ASP will need to get the value using request.form instead of request.querystring - alternatively, change your ajax to GET.
POST
request.form
request.querystring
GET