Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - July 15, 2021
Two-factor authentication (2FA) is an excellent way to enhance both the robustness of your authentication system and the user experience with your authentication process. 2FA adds something that a user has to what he knows in the process of checking what he tells himself to be. Table of Content 1. Create the ASP.NET MVC application. 2. Configuring the SMS for two-factor authentication. 3. Determine user credentials for the SMS provider. 4. Specify SenderID / Original. 5....
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...