简体   繁体   中英

How to get value of HTML element with VB.net

I create html element from database :

Dim table As String = "<form method='POST'>"
table &= "<input type='textbox' value='123' id='txtText'/>"
table &= "<input type="sumbit" text='Submit' /></form>"

When i click button submit, I want get value textbox with VB.NET

You just need to use RUNAT = "SERVER"

<form method='POST'>
   <input type='textbox' value='123' id='txtText'/>
   <input runat="SERVER" type="hidden" name="txtHidden" value="123" />
</form>

You need to set the value to hidden text, use runat = "SERVER" and get the value on server-side.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM