
Check Email formatting in asp.net c#(code behind).

Here is function to check email is in proper format or not, email is valid or not. public bool CheckEmail( st…
Here is function to check email is in proper format or not, email is valid or not. public bool CheckEmail( st…
Sometimes, we need to redirect to list page after saving data on other page. When you click on submit button, a success…
You can use following function to execute javascript code from code behind file in asp.net using c#. **when you a…
You can use following function to show alert message in asp.net using c#. Ex. Show data saved or updated successfully…
When you are using Ajax update panel, then normal alert function will not work. Here is the code to show alert messag…
Function to generate excel from dataset or datatable is given below: // Export to excel public void ExportToExc…
We can filter data in Dataset in asp.net C# using DataRow. We can use multiple filters in Dataview rowfliter to fil…
We can download all type of file like CSV, Docx, PNG, JPG, PDF etc from FTP server in asp.net using c#. I have share…
In this article, we will learn how to find sum of column’s value. This will be very helpful in situation where we calc…
We can use SqlDatasourse to show data in Gridview data control. In this article we will learn how to do this.
Using Javascript or Jquery we can acheive this easily. This article is useful for beginners.
Error: Access to XMLHttpRequest at 'http://core/api/test/filter?id=0' from origin
In this article we will discuss how to bind multiple dropdown with different data from one XML. Its easy to bind sing…
In this article we will discuss how to populate dropdown with xml data. It is very basic article and may be useful for…
In this article we learn how to use Ajax with Json in asp.net. It is very easy to call page method using ajax & …
In this article I will explain how to Import data from Excel sheet with multiple worksheets to multiple table.
Sorting is very much needed while working with Gridview . We can sort data using code in code behind file and also us…
In asp.net we can show file Icons according to file extension. It looks attractive if we show Icons with file name …
While working in Asp.Net, we need to execute JavaScript code from code behind. In this article I will explain how to …
In this article I will explain how to show pop up message and redirect on clicking “ ok ” button of message.