在cs頁面獲取input的值方法
概述:
想在後臺cs頁面得到前臺頁面aspx中html控制元件input輸入的值.
解決方法如下:
1.用Request["name"].toString();.
前臺程式碼如下:
Code
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->使用者名稱:<input name="username" type="text">
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->使用者名稱:<input name="username" type="text">
後臺獲取程式碼如下:
Code
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->string username = Request["username"].ToString();
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->string username = Request["username"].ToString();
2.用Request.Form.Get("name").ToString();
前臺程式碼如上一樣.
後臺獲取程式碼如下:
Code
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->string username = Request.Form.Get("username").ToString();
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->string username = Request.Form.Get("username").ToString();
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-441967/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- layui獲取頁面checkbox核取方塊值UI
- getBoundingClientRect方法獲取元素在頁面中的相對位置GCclient
- js如何獲取元素在頁面中的位置JS
- 在js中獲取 input checkbox裡選中的多個值JS
- JavaScript 獲取div在頁面中座標JavaScript
- ThinkPHP 在頁面獲取當前時間PHP
- jquery獲取同一name的input的value值jQuery
- 獲取input框輸入值異常
- jQuery獲取各種input輸入框的值jQuery
- 頁面獲得不了session值???Session
- selenium+python3 web自動化獲取html頁面元素屬性值方法PythonWebHTML
- 獲取元素在頁面中的座標位置程式碼例項
- js獲取滑鼠在頁面中的座標簡單介紹JS
- js獲取元素在頁面中的座標程式碼例項JS
- Asp.Net頁面傳值的方法ASP.NET
- JQuery獲取input type=jQuery
- javascript獲取滑鼠指標在整個頁面中的座標位置JavaScript指標
- asp.net 頁面傳值方法ASP.NET
- JSP頁面間傳值方法JS
- JavaScript-滑鼠獲取頁面座標JavaScript
- 獲取微信小程式頁面路徑微信小程式
- javascript獲取當前頁面的來路頁面地址JavaScript
- 頁面報錯 No input file specified
- 微信小程式獲取index索引值的方法微信小程式Index索引
- python request 獲取cookies value值的方法PythonCookie
- 獲取UITableViewCell中UITextField的值方法總結UIView
- H5禁用頁面快取的方法H5快取
- 禁止頁面快取資料的方法分享快取
- 微信小程式攜帶引數跳轉頁面/獲取頁面棧微信小程式
- js實現父頁面獲取iframe子頁面內容程式碼JS
- [前臺]---js獲取input標籤中name相同的各個value值JS
- appium 獲取混合頁面元素失敗APP
- js獲取操作iframe子頁面中元素JS
- PHP獲取當前頁面完整URL地址PHP
- 用 js 獲取頁面元素的位置圖文總結JS
- python獲取頁面亂碼時的處理Python
- js獲取頁面dom元素的幾種常用方式JS
- 獲取頁面中所有元素的節點型別型別