zoukankan      html  css  js  c++  java
  • asp.net mvc controller 获取数据

    Request.QueryString           NameValueCollection                        GET variables sent with this request


    Request.Form                     NameValueCollection                        POST variables sent with this request


    Request.Cookies                 HttpCookieCollection                        Cookies sent by the browser with this request


    Request.Http                      Method string                                 The HTTP method (verb, such as GET or POST) used for this request


    Request.Headers                 NameValueCollection                        The full set of HTTP headers sent with this request


    Request.Url                        Uri                                                 The URL requested

    Request.UserHostAddress   string                                             The IP address of the user making this request


    RouteData.Route                RouteBase                                      The chosen RouteTable.Routes entry for this request


    RouteData.Values               RouteValueDictionary                       Active route parameters (either extractedfrom the URL or default values)


    HttpContext.Application      HttpApplicationStateBase                  Application state store


    HttpContext.Cache             Cache                                             Application cache store


    HttpContext.Items             IDictionary                                       State store for the current request


    HttpContext.Session          HttpSessionStateBase                      State store for the visitor’s session


    User                                 IPrincipal                                          Authentication information about the logged-in user


    TempData                         TempDataDictionary                         Temporary data items stored for the current user

  • 相关阅读:
    SharePoint 2013 文档库中PPT转换PDF
    Linux线程-互斥锁pthread_mutex_t
    利用Python,四步掌握机器学习
    linux 文件夹权限及umask
    Android.mk入门(一)
    《Linux性能及调优指南》----1.1 Linux进程管理
    从进程到线程
    从程序到进程
    Android源码解析系列
    嵌入式工程师必读100本专业书籍
  • 原文地址:https://www.cnblogs.com/macil/p/2220552.html
Copyright © 2011-2022 走看看