2010-09-21 32 views
0

I'n新的ASP,我想知道如何接收表單變量,aspx:我怎樣才能接收表單變量?

例如:

<form id="test" method="post" action="test.aspx"> 
<input type="text" name="the_name"/> 
<input type="submit"/> 
</form> 

我怎樣才能得到正確的the_name價值?

感謝

在test.aspx.cs背後的代碼

回答

1

文件,你可以做到以下幾點:

string theName = Request["the_name"]); 
+2

的Request.Form [ 「the_name」]將是一個小更高效 – Ray 2010-09-21 14:44:10