Hi
In my master page i have the logo on top this logo wherever the user was on others pages of the application since he click on the logo it should redirect him to a page called: " Berava.aspx " which has a datalist of the products. what i am looking for to
code the logo button to redirect him to this page (and that's work now) but what i am facing on the code below is a red line under the datalist name as the code has been inserted inside the master page where the logo inside code behind but the datalist is
on other page where this logo should redirect the user to it.
protected void logobtn_Click(object sender, ImageClickEventArgs e)
{
if (Session["location"] != null)
{
using (SqlConnection shwadsprim = new SqlConnection(cs))
{
shwadsprim.Open();
...
Go to the complete details ...