Hi Tony,
Hard to tell without seeing the actual error message. The code protects you from the raw error message and writes out a nicer version instead. To see what's really going on, locate this code in AddEditBug.aspx.
vb:
Catch ex As Exception
lblErrorMessage.Text = "<br />An error occured while save the bug.
Please review your information and try again. If the problem
persists, contact your system administrator.<br /><br />"
lblErrorMessage.Visible = True
End Try
The typo of "occured while save the bug" may actually be in your code; not sure. Your error message seems to suggest it has been fixed to occurred and saving.
Either way, add an Throw statement to the end of the code:
lblErrorMessage.Visible = True
Throw
End Try
That should give you the real error message.
You can send me the URL and a Login account through my profile or through the Contact page of my web site if you don't want to expose it here in the forum.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004