खोज…


परिणाम देख

public ActionResult Index()
{
    // Renders a view as a Web page.
    return View();
}

कार्रवाई के तरीके आम तौर पर एक परिणाम देते हैं जो एक क्रिया परिणाम के रूप में जाना जाता है। ActionResult वर्ग सभी क्रिया परिणामों के लिए आधार वर्ग है। ActionInvoker यह तय करता है कि कार्य पद्धति के आधार पर किस प्रकार का एक्शन परिणाम वापस लौटना है।

यह स्पष्ट होना संभव है कि किस प्रकार की वापसी करनी है, लेकिन आम तौर पर यह आवश्यक नहीं है।

public ViewResult Index()
{
    // Renders a view as a Web page.
    return View();
}

PartialViewResult

public ActionResult PopulateFoods()
{
     IEnumerable<Food> foodList = GetAll();
     
    // Renders a partial view, which defines a section of a view that can be rendered inside another view.
    return PartialView("_foodTable", foodVms);;
}

कार्रवाई के तरीके आम तौर पर एक परिणाम देते हैं जो एक क्रिया परिणाम के रूप में जाना जाता है। ActionResult वर्ग सभी क्रिया परिणामों के लिए आधार वर्ग है। ActionInvoker यह तय करता है कि कार्य पद्धति के आधार पर किस प्रकार का एक्शन परिणाम वापस लौटना है।

यह स्पष्ट होना संभव है कि किस प्रकार की वापसी करनी है, लेकिन आम तौर पर यह आवश्यक नहीं है।

public PartialViewResult PopulateFoods()
{
    IEnumerable<Food> foodList = GetAll();
    
    // Renders a partial view, which defines a section of a view that can be rendered inside another view.
     return PartialView("_foodTable", foodVms);
}

RedirectResult

public ActionResult Index()
{
    //Redirects to another action method by using its URL.
    return new RedirectResult("http://www.google.com");
}

कार्रवाई के तरीके आम तौर पर एक परिणाम देते हैं जो एक क्रिया परिणाम के रूप में जाना जाता है। ActionResult वर्ग सभी क्रिया परिणामों के लिए आधार वर्ग है। ActionInvoker यह तय करता है कि कार्य पद्धति के आधार पर किस प्रकार का एक्शन परिणाम वापस लौटना है।

यह स्पष्ट होना संभव है कि किस प्रकार की वापसी करनी है, लेकिन आम तौर पर यह आवश्यक नहीं है।

public RedirectResult Index()
{
    //Redirects to another action method by using its URL.
    return new RedirectResult("http://www.google.com");
}

RedirectToRouteResult

public ActionResult PopulateFoods()
{
    // Redirects to another action method. In this case the index method
    return RedirectToAction("Index");
}

कार्रवाई के तरीके आम तौर पर एक परिणाम देते हैं जो एक क्रिया परिणाम के रूप में जाना जाता है। ActionResult वर्ग सभी क्रिया परिणामों के लिए आधार वर्ग है। ActionInvoker तय करता है कि कार्य पद्धति के आधार पर वापस लौटने के लिए किस प्रकार की कार्रवाई होती है।

यह स्पष्ट होना संभव है कि किस प्रकार की वापसी करनी है, लेकिन आम तौर पर यह आवश्यक नहीं है।

public RedirectToRouteResult PopulateFoods()
{        
   // Redirects to another action method. In this case the index method
   return RedirectToAction("Index");
}

यदि आप पैरामीटर के साथ किसी अन्य कार्रवाई पर पुनर्निर्देशित करना चाहते हैं - तो आप RedirectToAction ओवरलोड का उपयोग कर सकते हैं:

public ActionResult SomeActionWithParameterFromThisController(string parameterName)
{
   // Some logic
}
.....................
.....................
.....................
return RedirectToAction("SomeActionWithParameterFromThisController", new { parameterName = parameter });

ContentResult

public ActionResult Hello()
{
    // Returns a user-defined content type, in this case a string.
    return Content("hello world!");
}

कार्रवाई के तरीके आम तौर पर एक परिणाम देते हैं जो एक क्रिया परिणाम के रूप में जाना जाता है। ActionResult वर्ग सभी क्रिया परिणामों के लिए आधार वर्ग है। ActionInvoker यह तय करता है कि कार्य पद्धति के आधार पर किस प्रकार का एक्शन परिणाम वापस लौटना है।

यह स्पष्ट होना संभव है कि किस प्रकार की वापसी करनी है, लेकिन आम तौर पर यह आवश्यक नहीं है।

public ContentResult Hello()
{
    // Returns a user-defined content type, in this case a string.
    return Content("hello world!");
}

आप इसके बारे में और अधिक जान सकते हैं : Asp.Net Mvc: ContentResult बनाम string

JsonResult

public ActionResult LoadPage()
{
    Student result = getFirst();
    
    //Returns a serialized JSON object.
    return Json(result, JsonRequestBehavior.AllowGet);
}

कार्रवाई के तरीके आम तौर पर एक परिणाम देते हैं जो एक क्रिया परिणाम के रूप में जाना जाता है। ActionResult वर्ग सभी क्रिया परिणामों के लिए आधार वर्ग है। ActionInvoker यह तय करता है कि कार्य पद्धति के आधार पर किस प्रकार का एक्शन परिणाम वापस लौटना है।

यह स्पष्ट होना संभव है कि किस प्रकार की वापसी करनी है, लेकिन आम तौर पर यह आवश्यक नहीं है।

public JsonResult LoadPage()
{
    Student result = getFirst();
    
    //Returns a serialized JSON object.
    return Json(result, JsonRequestBehavior.AllowGet);
}


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow