Pagination & Sorting using ASP.NET Gridview
Among Server side web programming ASP.NET is so popular. It was found in ASP.NET applications Gridview is a key element to present data in tabular shape. Above 90% ASP.NET web application uses...
View ArticleHow to bind data to a Dropdownlist using DataReader?
Generally where only one option lefts to Choose from a list of records we use Dropdownlist Control. Let’s talk about a Country dropdownlist. What you need to do is need to fetch records from Database....
View ArticleHow to Create a Table using data from a DataReader?
Customization in a web app is very common. Requirement updates everyday. Depending on this it happens occasionally Gridview is incapable to meet customers demand. In this case we choose in-line table...
View ArticleHow to Generate an Excel file from SqlDataAdapter Data?
Excel is very common practice to share data across Network. Recently one of my Customer wants to provide export an excel button in their products list page. What I did to implement Export to Excel...
View ArticleHow to Create HTML page from Code behind using VB.NET?
Generally while designing a CMS we found this situation to handle. Let us assume we have records in Database. From those records we required to Create HTML pages dynamically. Here I did the same using...
View ArticleVB.NET function to generate Random String
In our app many time we required a random string. Whether it is to make the URL unique or to Valid an user or a dynamic Cookie random string is very useful. In the below function I am generating a...
View ArticleHow to display icon images in Gridview or Datagrid rows?
Do you ever worked for any file management system? Where you have word files, excel file or it can be an image file like jpeg or png? In .NET Gridview is a popular Control to present tabular data. In...
View ArticleHow to use JavaScript function with ASP.NET CustomValidator?
By default under Validations ASP.NET provides 5 Controls. They are Required field validator, Range Validator, Regular Expression Validator, Compare Field Validator & Custom Validator. Using...
View ArticleASP.NET Login app validating user from SQL Server
Designing a Login page is not so easy as we are thinking. Modern login pages comes with various rich feature such as Validating User, Form Validation, Capcha or Remember Password. In this demo app we...
View ArticleIn ASP.NET login page how to Store Credentials for next Login
During we develop a product its always wise to save user time. Think about a login page. Here for Consecutive logins it is much better if we will store user Login Credentials. Using which System will...
View Article