I have stepped through the code and all rows returned have the correct image path
Also this issue happens on both IE7 & Firefox 2
This issue only occures on a link that refreshes the page but does not navigate away
Here is the code that fill the Navigation Menu from SQL
SQLTable_L1 = Gen.GetNavigation(True, Members, "TopLeft")
For Each SQLRow_L1 In SQLTable_L1.Rows
MnuItem = New MenuItem(SQLRow_L1("Name").ToString, "", SQLRow_L1("Image").ToString, SQLRow_L1("URL").ToString, "")
mnuTopMainLeft.Items.Add(MnuItem)
Next
And the code that postsback
lblJoinError.Visible = False
lblLogInError.Visible = False
txtJoinEMail.Text = ""
txtJoinName.Text = ""
txtJoinPassword.Text = ""
txtJoinUsername.Text = ""
txtLogInPassword.Text = ""
txtLogInUsername.Text = ""
chkLogInRemember.Checked = False
Last edited by ptaylor965 : Nov 8th, 2007 at 2:39 pm.