Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - July 15, 2021
Table of Content 1. Introduction 2. Create Your MVC application 3. SQL Database part 4. Enable-migrations 5. Implementing Membership Provider and Role Provider 6. Create a controller 7. Authorization filter 8. Conclusion Introduction In this blog, we'll show you how to make your authentication application. Authentication and authorization are indispensable aspects for any website project to grant users access based on their roles, as you may know....
Kapil Panchal - July 13, 2021
Table of Content 1.Introduction 2. Create a Textbox in ASP.NET MVC 3. Html.TextBoxFor() 3.1Overloads 4. Html.TextBox() 4.1Overloads 5. Conclusion Introduction An HTML Helper is nothing more than a string-returning method. The HTML helper is a mechanism for rendering HTML material in a view. An extension method is used to implement HTML helpers. HTML controls are rendered in the razor view by the HTMLHelper class. while submitting...
Kapil Panchal - July 06, 2021
Table of Content 1. What is a Thumbnail? 2. Why We Use Thumbnails? 3. When Thumbnails Are Useful? 4. Some Examples for Thumbnails 5. Generate Thumbnails Image 6. Conclusion What is a Thumbnail? Thumbnail is an image with a reduced file size of the actual image that is used as at a time of uploading image. Why We Use Thumbnails? The main advantage of thumbnail image is to reduce the file size using thumbnail image to load websites...
Kapil Panchal - June 30, 2021
Table of Content 1. What is Form Collection? 2. How to Implement form collection in ASP.NET MVC? 3. Conclusion What is Form Collection? Form collection is used to retrieve input elements from the controller action method. Form collection class automatically receives the data form value in controller methods in the form of key/value pair. Key and value pairs are accessed using the key name and index value. How to Implement form collection in ASP.NET...
Kapil Panchal - June 29, 2021
ASP.NET MVC routing is a model mapping system that is responsible for mapping incoming browser queries with specified MVC controller actions. When the ASP.NET MVC application is launched, the application records one or more of the models with the frame route table to specify the routing engine what to do with any request which corresponds to these models. When the routing engine receives a query at runtime, it matches the URL of that query with the URL templates saved with it and gives the...