在cs頁面獲取input的值方法

iDotNetSpace發表於2008-09-05

概述:

      想在後臺cs頁面得到前臺頁面aspx中html控制元件input輸入的值.

解決方法如下:

   1.用Request["name"].toString();.

前臺程式碼如下:

在cs頁面獲取input的值方法
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt使用者名稱:<input name="username" type="text">

後臺獲取程式碼如下:

 

在cs頁面獲取input的值方法
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtstring username = Request["username"].ToString();

  2.用Request.Form.Get("name").ToString();

前臺程式碼如上一樣.

後臺獲取程式碼如下:

 

在cs頁面獲取input的值方法
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtstring username = Request.Form.Get("username").ToString();

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-441967/,如需轉載,請註明出處,否則將追究法律責任。

相關文章