asp.net에서 html 태그 값을 가져오는 방법: 1. [runat="server"] 메서드를 추가하면 코드는 [] ;2. 직접 획득 방법.
이 튜토리얼의 운영 환경: windows7 시스템, html5 버전, DELL G3 컴퓨터.
asp.net에서 html 태그 값을 얻는 방법:
두 가지 방법:
1. runat="server"
<input id="Text1" runat="server" type="text" />
백그라운드에서 문자열 str=this.Text1.value를 가져옵니다. . 직접 받아보세요
<input id="Text1" name="GetValue" type="text" /> string str=Request.Form["GetValue"];
html 비디오 튜토리얼
위 내용은 asp.net에서 html 태그 값을 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!