Category - MVC
Results 61 - 80 of 1069
30 Nov 2022 30 Nov 2022 0 Comments  1961 Views
Here Mudassar Khan has explained with an example, how to pass (send) parameter to Stored Procedure in ASP.Net Core MVC.

The Stored Procedure is called with parameter using the FromSql function of Entity Framework in ASP.Net Core MVC.
30 Nov 2022 30 Nov 2022 0 Comments  3195 Views
Here Mudassar Khan has explained with an example, how to use Stored Procedure in ASP.Net Core MVC.

The Stored Procedure is called using the FromSql function of Entity Framework in ASP.Net Core MVC.
29 Nov 2022 29 Nov 2022 0 Comments  1114 Views
Here Mudassar Khan has explained with an example, how to validate HTML Form using jQuery Validation plugin in ASP.Net Core MVC.

This article makes use of jQuery ValidationEngine plugin for performing validation.

jQuery ValidationEngine plugin will perform validation for various Form fields like TextBox, DropDownList, etc. and the type of validations involved would be Required, Email, Password confirmation, Minimum and Maximum Length, Telephone number, Mobile Cell number, Date Format such as dd/MM/yyyy dates.
29 Nov 2022 29 Nov 2022 0 Comments  1129 Views
Here Mudassar Khan has explained with an example, how to validate HTML Form using jQuery Validation plugin in ASP.Net MVC.

This article makes use of jQuery ValidationEngine plugin for performing validation.

jQuery ValidationEngine plugin will perform validation for various Form fields like TextBox, DropDownList, etc. and the type of validations involved would be Required, Email, Password confirmation, Minimum and Maximum Length, Telephone number, Mobile Cell number, Date Format such as dd/MM/yyyy dates.
26 Nov 2022 26 Nov 2022 0 Comments  2490 Views
Here Mudassar Khan has explained with an example, how to export data from database to PDF file in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to PDF file using itext7.pdfhtml library in ASP.Net Core MVC.
26 Nov 2022 26 Nov 2022 0 Comments  1720 Views
Here Mudassar Khan has explained with an example, how to export data from database to PDF file in ASP.Net MVC Razor.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to PDF file using iTextSharp XMLWorkerHelper library in ASP.Net MVC Razor.
26 Nov 2022 26 Nov 2022 0 Comments  1382 Views
Here Mudassar Khan has explained with an example, how to export HTML string to PDF file in ASP.Net Core MVC.

The data from database will be populated in HTML Table using Entity Framework in ASP.Net Core MVC.

Finally, the HTML Table will be exported and downloaded as PDF file using itext7.pdfhtml library in ASP.Net Core MVC.
25 Nov 2022 25 Nov 2022 0 Comments  3439 Views
Here Mudassar Khan has explained with an example, how to export data from database to CSV file in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and a Comma Separated (Delimited) string is generated using StringBuilder class.

Finally, the generated string will be exported to CSV file in ASP.Net Core MVC.
25 Nov 2022 25 Nov 2022 0 Comments  1385 Views
Here Mudassar Khan has explained with an example, how to export data from database to CSV file in ASP.Net MVC Razor.

The data from the database is fetched using Entity Framework and a Comma Separated (Delimited) string is generated using StringBuilder class.

Finally, the generated string will be exported to CSV file in ASP.Net MVC Razor.
22 Nov 2022 22 Nov 2022 0 Comments  979 Views
Here Mudassar Khan has explained with an example, how to export data from database to Word document in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to Word document in ASP.Net Core MVC.
22 Nov 2022 22 Nov 2022 0 Comments  782 Views
Here Mudassar Khan has explained with an example, how to export data from database to Word document in ASP.Net MVC Razor.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to Word document in ASP.Net MVC Razor.
18 Nov 2022 05 Dec 2022 0 Comments  3050 Views
Here Mudassar Khan has explained a step by step tutorial with an example, how to use WebGrid in ASP.Net Core MVC.

This article will explain how to implement WebGrid with Entity Framework and also display specific columns in WebGrid in ASP.Net Core MVC.

The WebGrid will be implemented using the MVC6 Grid library in ASP.Net Core MVC.
18 Nov 2022 18 Nov 2022 0 Comments  1203 Views
Here Mudassar Khan has explained with an example, how to export HTML string to Excel file in ASP.Net Core MVC.

First, the HTML Table will be populated from database using Entity Framework and then the HTML Table will be sent as HTML string to the Controller which will be exported to Excel file in ASP.Net Core MVC.
15 Nov 2022 15 Nov 2022 0 Comments  827 Views
Here Mudassar Khan has explained with an example, how to export data from database to HTML file in ASP.Net Core MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to HTML (.htm) file in ASP.Net Core MVC.
15 Nov 2022 15 Nov 2022 0 Comments  963 Views
Here Mudassar Khan has explained with an example, how to export data from database to HTML file in ASP.Net MVC.

The data from the database is fetched using Entity Framework and dynamic HTML string is generated using StringBuilder class.

Finally, the generated HTML string will be exported to HTML (.htm) file in ASP.Net MVC Razor.
14 Nov 2022 14 Nov 2022 0 Comments  833 Views
Here Mudassar Khan has explained with an example, how to export WebGrid to HTML File (HTML String) in ASP.Net MVC Razor.

First, the WebGrid will be populated from database using Entity Framework and then the generated HTML Table of WebGrid will be sent as HTML string to the Controller which will be exported to HTML (.htm) file in ASP.Net MVC Razor.
12 Nov 2022 12 Nov 2022 0 Comments  983 Views
Here Mudassar Khan has explained with an example, how to export (Grid) GridView to HTML File (HTML String) in ASP.Net Core MVC.

First, the Grid (GridView) will be populated from database using Entity Framework and then the generated HTML Table of Grid (GridView) will be sent as HTML string to the Controller which will be exported to HTML (.htm) file in ASP.Net Core MVC.
12 Nov 2022 12 Nov 2022 0 Comments  972 Views
Here Mudassar Khan has explained with an example, how to export (Grid) GridView to HTML File (HTML String) in ASP.Net MVC Razor.

First, the Grid (GridView) will be populated from database using Entity Framework and then the generated HTML Table of Grid (GridView) will be sent as HTML string to the Controller which will be exported to HTML (.htm) file in ASP.Net MVC Razor.
10 Nov 2022 10 Nov 2022 0 Comments  764 Views
Here Mudassar Khan has explained with an example, how to perform US Mobile Number validation on Server Side using Data Annotation in ASP.Net Core MVC.

The US Mobile Number validation will be performed using Regular Expression (Regex) in ASP.Net Core MVC.
10 Nov 2022 10 Nov 2022 0 Comments  765 Views
Here Mudassar Khan has explained with an example, how to perform US Mobile Number validation on Server Side using Data Annotation in ASP.Net MVC.

The US Mobile Number validation will be performed using Regular Expression (Regex) in ASP.Net MVC.
Results 61 - 80 of 1069