Author: Hardeep Singh
Hello Guys, In this post, I am going to describe how we can rename any project under a visual studio solution. I often needed to rename the project name and each time I have to google it to find the correct solution and further often have to do some brainstorming to find out the correct solution, …
Our application requirement changes from day to day and same we have to do our work on the database side. There are n numbers of SQL operations we do in a database like creating tables, updating table, add columns, add foreign key relation and many more as per our requirements. As requirement comes I have to …
In web application development we often need to use the hidden fields inside the form, the field may contains any data like primary key of table, username etc. Any data that we don’t want people see. So what will happened if your Hidden field not getting updated ? You whole module work flow may affected due to this problem. …
Page LoadComplete event not getting fired, it actually works until you got something wrong. We will get to know later in this post why Page_LoadComplete was not working. So let’s get started. What was happening in my case that I had one base class (inheriting page class as normal) and that base class was further being inherited …
I created new project and I did setup routes and other necessary functions, now it was turn for form authentication. I follow up all necessary steps, required to validate the user like creating cookie etc like below: var userData = JsonConvert.SerializeObject(serializeModel); var expiryDate = model.RememberMe ? DateTime.Now.AddDays(14) : DateTime.Now.AddDays(1); var ticket = new FormsAuthenticationTicket(1, model.UserName, DateTime.Now, …
Viewstate might be very useful during Asp.net application, it can hold the value until you are on the page means when you redirected to another page all saved value will be removed. Its very easy to use viewstate value on code behind, but if you will try to get on client side it might not be …
In this post I have described the problem and solution of the Dropdown not displaying selected value in case of list of model Sometimes during programming we have some cases where we need to use list of model. There can be many examples like we need to save multiple user bank accounts or credit cards or we …
Hello guys, today we’ll learn about How we can auto select menu using Jquery. The most common functionality in almost all websites is that to show selected menu which was previously clicked. There are many ways to do this, either we can achieve this using server side language or we can use jQuery or javascript(Almost all …
Hello World in this post, I will share Some Useful Jquery Stuff that could be helpful for developing any web application. When we make a web application, then we have to manage two things (functionality and cool UI). User Interface is very important part for each application, so that each functionality of website could be accessed by user …
Today in this post we will discuss about How to update path in table column using SQL When we need to do this Sometimes, we save path of any file in database, assume that all files being saved in D drive but later you don’t want to save your files on D drive, maybe you need to …