Posts

Showing posts from February 11, 2019

How to Pass Query String Parameter in Page_load using Asp.Net

Query String Parameter ID QueryId  Protected void Page_Load(object sender, EventArgs e)         {             if (!IsPostBack)             {                 if (Request.QueryString["ID"]==null)                 {                     QueryId= string.Empty;                 }                else                 {                     QueryId= Request.QueryString["ID"].ToString();                 }             }         }

Popular posts from this blog

String Program in C#

CSV using XmlNode

Controller_Model. cs