When Ispostback=true represents a non-first request * httpcontext.current.request.querystring[] in parentheses is to get the parameter value passed by another page
httpcontext.current.request.form["ID"] The form gets the value according to the name= "id", which is not the id= "id" of the httpcontext.current.request["id", the general version of both.
Essence: ID is name= "id" <form>
<input type= "text" name= "ID" value= "AAAA"/> <
/form>
If the value of name in the HTML page changes, the background changes accordingly.
Processedit:
<input type= "hidden" name= "Hidid" id= "Hidid"/>
Html:
int id = Int. Parse (context. request["Hidid"]?? "0")
* Is there a book that systematically, structurally, and practically has a theory of our scattered little knowledge. = = A real project is a good book.
General processing Program PR method: ProcessRequest
* How to display the line number of VS1010. Tools-Options-text editor-all languages-line numbers.
Confusion between pages passing values