test.aspx
----------------------------------------
test.asx.cs
using MaaShardaTech.Common;
public partial class test : System.Web.UI.Page
{
CommonFun objcf = new CommonFun();
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
objcf.SetDoctrTypeToDDL(ddlDoctorsType);
...
Page navigation techniques in asp.net-Hyperlink
Page Navigation
In this part we will study what is page navigation technique? Why use them? Basically there are different types of page navigation technique in ASP.NET but each technique has its own importance and benefits, and which page-navigation technique should be used depends on the current...