Click here to Skip to main content
15,888,521 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: DROP TABLE Pin
Member 870181322-Feb-13 4:31
Member 870181322-Feb-13 4:31 
QuestionMVC and Web.config(ssssss)???!!!!!?? Pin
Super Lloyd21-Feb-13 14:14
Super Lloyd21-Feb-13 14:14 
AnswerRe: MVC and Web.config(ssssss)???!!!!!?? Pin
Sandeep Mewara21-Feb-13 19:06
mveSandeep Mewara21-Feb-13 19:06 
GeneralRe: MVC and Web.config(ssssss)???!!!!!?? Pin
Super Lloyd21-Feb-13 21:49
Super Lloyd21-Feb-13 21:49 
GeneralRe: MVC and Web.config(ssssss)???!!!!!?? Pin
Sandeep Mewara21-Feb-13 22:09
mveSandeep Mewara21-Feb-13 22:09 
QuestionHandling application settings in Virtual path provider Pin
Mark hafel21-Feb-13 13:33
Mark hafel21-Feb-13 13:33 
Questionasp.net app with c#, vb, and fortran Pin
ryan johnson21-Feb-13 12:53
ryan johnson21-Feb-13 12:53 
AnswerRe: asp.net app with c#, vb, and fortran Pin
Richard Deeming22-Feb-13 1:54
mveRichard Deeming22-Feb-13 1:54 
Some comments on the ASP.NET error:

  1. Don't use Catch ex As Exception; only catch the exceptions you're able to handle.
  2. Don't use Throw New Exception(...); always use a more specific exception type.
    For example: Throw New InvalidOperationException(...).
  3. If you're catching an exception and throwing a new exception, always pass the original exception to the innerException parameter of the new exception. This will preserve the information about the original exception, which will make it much easier to debug.
    VB
    Throw New InvalidOperationException(..., ex)

    At the moment, all we know is that something within or called by your setPressureTemperature method has thrown an exception; we have no way of knowing what that exception was.
  4. Once you've updated the code to pass the inner exception through, run your code again and look in the application event log. The full details of the exception should be logged there.




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionDynamically update price based on exchange rate Pin
Deepa420-Feb-13 20:06
Deepa420-Feb-13 20:06 
AnswerRe: Dynamically update price based on exchange rate Pin
Sandeep Mewara20-Feb-13 21:49
mveSandeep Mewara20-Feb-13 21:49 
GeneralRe: Dynamically update price based on exchange rate Pin
Deepa420-Feb-13 22:00
Deepa420-Feb-13 22:00 
GeneralRe: Dynamically update price based on exchange rate Pin
Sandeep Mewara20-Feb-13 22:59
mveSandeep Mewara20-Feb-13 22:59 
AnswerRe: Dynamically update price based on exchange rate Pin
Richard MacCutchan20-Feb-13 23:02
mveRichard MacCutchan20-Feb-13 23:02 
AnswerUse webservice for exchange rate Pin
David Mujica21-Feb-13 3:04
David Mujica21-Feb-13 3:04 
QuestionASP.NET 4.0 How to make session values alive still user logout. Pin
VishwaKL20-Feb-13 19:36
VishwaKL20-Feb-13 19:36 
AnswerRe: ASP.NET 4.0 How to make session values alive still user logout. Pin
Sandeep Mewara20-Feb-13 21:46
mveSandeep Mewara20-Feb-13 21:46 
QuestionUser control variable not declared in .aspx page Pin
queenmichelle20-Feb-13 14:16
queenmichelle20-Feb-13 14:16 
AnswerRe: User control variable not declared in .aspx page Pin
Karthik Harve20-Feb-13 17:45
professionalKarthik Harve20-Feb-13 17:45 
AnswerRe: User control variable not declared in .aspx page Pin
Sandeep Mewara20-Feb-13 19:17
mveSandeep Mewara20-Feb-13 19:17 
QuestionThe information session ID Pin
Mohammad Hussein Fakhravari20-Feb-13 12:45
Mohammad Hussein Fakhravari20-Feb-13 12:45 
AnswerRe: The information session ID Pin
Sandeep Mewara20-Feb-13 17:14
mveSandeep Mewara20-Feb-13 17:14 
AnswerRe: The information session ID Pin
Mohammad Hussein Fakhravari21-Feb-13 8:28
Mohammad Hussein Fakhravari21-Feb-13 8:28 
Questionbutton disable until all required fields are filled Pin
Member 870181320-Feb-13 7:12
Member 870181320-Feb-13 7:12 
AnswerRe: button disable until all required fields are filled Pin
Sandeep Mewara20-Feb-13 17:13
mveSandeep Mewara20-Feb-13 17:13 
GeneralRe: button disable until all required fields are filled Pin
Member 870181320-Feb-13 20:04
Member 870181320-Feb-13 20:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.