2
Reply

I tried but image path is not coming correctly

narasiman rao

narasiman rao

Jul 30 2016 8:50 AM
273
  i am fetching the image from the folder

i have one folder called digital in that folder lot of images are there


Desintation CHN - TBM (Label Name)

in that digital folder CHN - TBM image is there. i want to check the image name and label name should be same. then display image


My code as follows

protected void Page_Load(object sender, EventArgs e)
{
string imgname = lbltext.Text.ToString();
string folderPath = Server.MapPath("digital/" + imgname);
if (folderPath == imgname.ToString())
{
lblresult.Text = folderPath;
}
}

But in folder path i get as follows when i check using break point

D:\Dot Net Practical Excercise\WebApplication1\WebApplication1\digital\CHN - TBM

from the above i want to get only CHN - TBM


in my above code what is the mistake i made. 

Answers (2)