<div>Hi</div> <div>I have top banner in my application which will show an image and i am using "location" session so first page of application allow user to choose his country and then redirect him to the selected country page. what i am looking for to show
each image on the specific page depending on session and if the user click on this banner its will open new tab in the browser and move it to website depending on website column in the table. Here is my server code which is not working and the image its not
appear
https://www.youtube.com/watch?v=xJHU5eLuMTY&feature=youtu.be
protected void Topbannerimgbtn_Click(object sender, EventArgs e)
{
var location = Convert.ToString(Session["location"]);
using (SqlConnection topbanner = new SqlConnection(sc))
{
topbanner.Open();
SqlDataAdapter DAtopban ...
Go to the complete details ...