How To Pass Values Between Two Web Pages In ASP.NET ASP.NET is an open-source server-side web application framework designed for web development to develop dynamic web pages. Developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services. The successor of ASP.NET is ASP.NET Core. It is a re-integration of ASP.NET as a web framework, along with other frameworks.
ASP.NET web forms give excellent event driven programming model to developers. It simplifies the overall design of your application but has some problems of its own. For example, in conventional ASP values can be easily passed from one ASP page to another ASP page using POST. The same thing is impossible in ASP.NET if you want to stick to web form model .There are some ways that can be used to overcome this situation. This article denotes various possibilities to do the same. Specifically we will deal how to pass values using querystring, how to utilise session variables to do the same and finally how to use Server.Transfer method. Querystring Querystring is a day old process to pass values across pages. The main advantage of this method is very simple. What limits is that the values are visible in the browser address bar and you can not pass objects that way. This method is best suited when you want to pass less number of values that