This topic is locked

Images URL change reference when new page is displayed

2/28/2016 9:44:16 PM
ASPRunner.NET General questions
R
raymueller authorDevClub member

The solution that you recommended works great at least when the application is initially launched.
The code is nearly identical

if ((data["obj_TrendFK"])==1)

value="<img src='images/ArrowRedS.png'>";

else if ((data["obj_TrendFK"])==2)

value="<img src='images/ArrowGreenS.png'>";

else

value="<img src='images/ArrowRedS.png'>";
When I initially launch the application, the images are displayed. The location of the graphics according to the browser is https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=23688&image=1&table=forumtopics.
When I have the application go to another function like Add page and come back, the images are not displayed. The location for the images is now https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=23688&image=2&table=forumtopics.
Somehow dbo_Objectives (a table in the solution) is being appended to the URL.
What did I miss?
Many thanks

Ray