......
Finding all Stored Procedures that calls a Function in SQL Server | SQL Server Tutorial
The below Stored Procedure searches within all the stored procedures in the SQL server database, views, and functions for the given function name. This stored procedure also search......
Finding Stored Procedures that Accesses Particular Table or Column in SQL Server | SQL Server Tutorial
By querying the Procedures table in Sys as given below, we can find the SQL Server stored procedures that refers particular column are tables. SELECT Name FROM sys.procedures WHERE......
Deleting Multiple Records in Entity Framework | Entity Framework Tutorial
Sometimes you may need to delete multiple records. In such case, developers use to iterate through the collection using foreach and will set each entity state to modified. Some developers......
How to Get Browser Agent from ASP.NET Web API Controller? | ASP.NET Web API Tutorial
The easiest way to get the full user-agent from inside an ASP.NET Web API-controller is as given below: var userAgent = Request.Headers.UserAgent.ToString(); It gives exactly......
Excluding Required Property from ModelState.IsValid | ASP.NET MVC Tutorial
You can exclude any property from validating using parameter binding. Set the exclude property in Bind attribute of a parameter as [Bind(Exclude = "Password")] In this......
Process Flow of Single and Multitenancy ASP.NET MVC Application | ASP.NET MVC Tutorial
Single-Tenancy Application The steps that lead from a user entering a website address in his browser to viewing the content are fairly straightforward. The browser sends a request......
Simplifying AccountController by Removing External Login Related Actions | ASP.NET MVC Tutorial
There are a number of methods on AccountController related to External Logins. If you examine AccountController carefully, you can go through and delete the code for the following......
Popular Tutorials
- Creating Cookie in ASP.NET MVC Action | Handling Cookies in ASP.NET MVC | Set Cookie Expiry in ASP.NET MVC | ASP.NET MVC Tutorial
- Generating Multiline TextBox or TextArea with @Html.EditorFor in ASP.NET MVC
- Generating Unique Token in C# | Generating Unique Token that Expires after 24 Hours in C# | C# Tutorial
- Drag & Drop File Upload In ASP.NET MVC Using dropzone js with Fallback Browser Support | ASP.NET MVC Tutorial
- Loading PartialView Via JQuery In ASP.NET MVC | Returning PartialView From ASP.NET MVC Action | ASP.NET MVC Tutorial
- How To Enable Role Manager Feature In ASP.NET MVC? | ASP.NET MVC Interview Question
- How To Add CSS Class And Custom Property in Html.TextBoxFor? | ASP.NET MVC | RAZOR
- Send and Receive SMS and MMS Messages Using Android 4.4 SMS API | Android Video Tutorial
- How to Get Browser Agent from ASP.NET Web API Controller? | ASP.NET Web API Tutorial
- How to Override the Common Route Prefix? | ASP.Net MVC Interview Question