真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Request.Form與Request.QueryString使用

controler控制器代碼
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace asp.net_mvc_Demo2.Controllers
{
    public class HomeController : Controller
    {
        //
        // GET: /Home/

        public ActionResult Index()
        {
            #region Request.QueryString
            ////第一步,設(shè)置與前臺交互
            ////Request.QueryString,用于method的“Get”獲取的是前臺輸入的查詢字符串,
            ////http://localhost:27123/Home/Index?key=1245
            //string str = Request.QueryString["key"];//返回的是查詢字符串中“?”后的數(shù)值
            ////第二步:業(yè)務(wù)邏輯處理
            //str = str ?? string.Empty;//新語法,如果str為空則返回string.Empty否則則為str
            ////第三步:將數(shù)據(jù)返回前臺
            //ViewData["demo"] = str;
       
            #endregion
            #region Request.Form使用
            //Request.Form中使用的是Method的方式是“post”,得必須提交給服務(wù)器,例如使用submit表單
            string str1 = Request.Form["txt"];
            str1 = str1 ?? "獲取值為空";
            TempData["demo1"] = str1; 
            #endregion
            return View(); 
        }

    }
}
View視圖代碼
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>





    
    Index


    
        
<%--            <%:ViewData["demo"] %>--%>             <%:TempData["demo1"] %>                                   
    

本文標(biāo)題:Request.Form與Request.QueryString使用
文章鏈接:http://weahome.cn/article/gsgehh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部