I got a prob I am using a repeater to display the product docs. M using OnItemCommand but its not firing. can u tell me wat might be the prob, I made viewstate as enable.I am using Request.Query ,Wen i am commenting this line it works properly. I wnt to use Request.Query string

Plz help me

 
    
   
   
   

   
   
   


protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["showproducts"] != null)
        {
            if (Request.QueryString["showproducts"] == "1")
            {
                mvUser.SetActiveView(viewProducts);
                //DataSet ds = new DataSet();
                //lblTest.Text = "";
                FillRepeater();
            }
        }    
}

Replies

Know the answer? Post it — somebody with the same question will find it here.