In ASP.NET Core Razor Pages, the PageModel class (often referred to as the "Page class") provides several important properties and methods that enable page handling, model binding, data validation, and routing. Here’s a rundown of some of the most important properties and methods available in PageModel:
Important Properties
- ModelState
- ViewData
- TempData
- HttpContext
- Request
- Response
- Url
- User
- RouteData
Important Methods
- OnGet and OnPost (and other HTTP-specific methods)
- RedirectToPage
- RedirectToAction
- Content
- File
- NotFound
- BadRequest
- Forbid
- LocalRedirect
Now we look at some important Properties:
ModelState: It contains the state of model binding and validation. You can check if the model binding was successful and if the data is valid using ModelState.IsValid. It is useful for form validation and error handling.
ViewData: It allows you to pass data between the page and its layout or partial views. It uses a dictionary structure and can hold any object. Typically used for temporary, one-time data passing.
TempData: It is used to store data that is intended to persist across requests, such as success messages after a redirect. It retains data only for a single request and is often used for redirect scenarios.
HttpContext: It provides access to the HTTP context for the current request, including details like request headers, user identity, session, and cookies.
Request: It contains details about the incoming HTTP request, such as query string parameters, form data, headers, and cookies.
Response: It represents the HTTP response to be sent to the client. This can be used to manipulate headers, status codes, or perform redirects.
Url: It provides helper methods to construct URLs within the application, often used to generate URLs for links or redirects.
User: It represents the authenticated user’s identity, allowing you to access information about the user, including claims and roles.
RouteData: It contains route data for the current request, such as route values (parameters) passed through the URL.
Now we look at some important Methods:
OnGet and OnPost (and other HTTP-specific methods):
Examples: OnGet(), OnPost(), OnPut(), OnDelete()
Purpose: These methods handle specific HTTP request methods. OnGet is called for GET requests, while OnPost handles POST requests. These methods are the entry points for handling page requests and implementing page-specific logic.
RedirectToPage:
Purpose: Redirects the user to another Razor Page within the application.
Example:
return RedirectToPage("/Index");
RedirectToAction:
Purpose: Redirects to a specific action in an MVC controller.
Example:
return RedirectToAction("ActionName", "ControllerName");
Page:
Purpose: Returns the current page, which is useful when you want to re-render the same page (e.g., when validation fails).
Example:
return Page();
Content:
Purpose: Returns a ContentResult with the specified content type and data, useful for returning raw text or HTML.
Example:
return Content("This is a plain text response.");
File:
Purpose: Returns a file to be downloaded or displayed, often used for file downloads.
Example:
return File(fileBytes, "application/pdf", "Document.pdf");
NotFound:
Purpose: Returns a 404 response, indicating that the requested resource was not found.
Example:
return NotFound();
BadRequest:
Purpose: Returns a 400 Bad Request response, often used to indicate invalid input or malformed requests.
Example:
return BadRequest("Invalid input.");
Forbid:
Purpose: Returns a 403 Forbidden response, used when access to a resource is denied.
Example:
return Forbid();
LocalRedirect:
Purpose: Redirects to a URL within the same application, ensuring that the redirection stays within the application.
Example:
return LocalRedirect("~/Privacy");
Example of Using PageModel Properties and Methods in a Razor Page
public class ContactModel : PageModel
{
[BindProperty]
public string Name { get; set; }
public IActionResult OnPost()
{
if (!ModelState.IsValid)
{
return Page(); // Redisplay the page with validation errors
}
TempData["Message"] = "Form submitted successfully!";
return RedirectToPage("/Success");
}
public IActionResult OnGet()
{
ViewData["Greeting"] = "Welcome to the Contact Page!";
return Page();
}
}
In this example, TempData is used to pass a success message across the redirect, ModelState validates input, and ViewData is used to store a greeting message.
Summary
The PageModel class in ASP.NET Core Razor Pages provides a rich set of properties and methods to handle HTTP requests, manage data, perform redirects, and interact with the current HTTP context. These capabilities allow developers to efficiently manage page requests, maintain page state, and handle user interactions within Razor Pages.
No comments:
Post a Comment