Wrox Programmer Forums
|
BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6
This is the forum to discuss the Wrox book ASP.NET 2.0 Instant Results by Imar Spaanjaars, Paul Wilton, Shawn Livermore; ISBN: 9780471749516
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 6th, 2007, 02:35 PM
Registered User
 
Join Date: Jun 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Bugbase not saving bugs

Imar,

Thanks for the help on that last question, I finally using that other utility I was able to setup the database with data you provided in the book.

Right now the application works when I put in a application and features of which I have two application with about 15 features each, but when I file a new bug I get the following response.

"An error occured while saving the bug. Please review your information and try again. If the problem persists, contact your system administrator."

Any idea why I would get this error since I have not changed any code? I can give you my web address so you can look if you don't think there would be any problems posting it here for all to see.

Tony...


 
Old August 6th, 2007, 02:48 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

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





Similar Threads
Thread Thread Starter Forum Replies Last Post
excel bugs jiggy Excel VBA 0 June 16th, 2006 06:03 PM
ODBC Bugs? sandeepk Oracle ASP 0 February 20th, 2006 09:13 AM
ASPX saving causes bugs - Urgent please!!!! DaveVernon Classic ASP Professional 0 April 12th, 2005 04:15 AM
Search has some bugs?!!! mehdi62b Forum and Wrox.com Feedback 10 September 8th, 2004 09:18 AM
UNION BUGS?? virtualdave Pro VB Databases 2 March 8th, 2004 05:11 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.