I have more than 1000 controls in a html web page. when i submit the page i get only values of 1000 controls
NameValueCollection nv = (NameValueCollection) HttpContext.Current.Request.Form
nv.count is 1000 , how can i get HttpContext.Current.Request of more than 1000 html controls value ?
Your webserver has a limit on how large requests it will allow.
If you are using IIS you can check out
http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits
But i would suggest using some other technique to post your data, maybe AJAX