1. 程式人生 > >自定義引數輸出錯誤

自定義引數輸出錯誤

(1)建立一個Controller基類得控制器,就能夠訪問一些屬性,而這些屬性包括:Request,Response,RiuteData,HttpContext,Server等等得一些屬性,下面就以案例說明。

示例:在控制器HomeController中得index進行一些程式碼編寫,示例如下

public ActionResult Index(out int a)
        {
            //string userName = User.Identity.Name;

            //string serverName = Server.MachineName;

            //string clientIP = Request.UserHostAddress;

            //DateTime dateStamp = HttpContext.Timestamp;

            //string oldProductName = Request.Form["01dName"];

            //string newProductName = Request.Form["NewName"];

            //ViewBag.Message = "本機的IP是:" + clientIP;

            ViewBag.Title = "歡迎來到MVC的世界!";
            a = 1;
            ViewBag.Num = a;
            return View();
        }

(2)下一步就是在view下面得index檢視中進行程式碼編寫,index檢視得程式碼如下

@{ 
    ViewBag.Title = "MyView";
}

<h2>MyView</h2>
Message:@ViewBag.Message<br/>
<br/>
Num:@ViewBag.Num

(3)程式碼寫完了,就進行程式執行,執行得結果如下

而這個呢?就是我們自定義的引數輸出錯誤。