Hi,
i have found help within http://forums.asp.net/
with someones help i have found this soloution incase anyone comes back to this page
url = StaffDirectory_photo.aspx?Ref=11111
Code:
<img id="StaffPhoto" alt="" runat="server" src="staff_images/default.jpg" height="130" />
with this in the background
Code:
protected void Page_Load(object sender, EventArgs e)
{
string Staffreferenceid = Request.QueryString["Ref"];
string ImgUrl = @"\\athens\staffimages$\" + Staffreferenceid + ".jpg";
StaffPhoto.Src = ImgUrl;
}
thanks
Bookmarks