Click here to Skip to main content
15,901,205 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Get Previous month and year Pin
Not Active12-Jan-09 17:21
mentorNot Active12-Jan-09 17:21 
QuestionProblem with XP os.. Pin
sarang_k12-Jan-09 15:13
sarang_k12-Jan-09 15:13 
AnswerRe: Problem with XP os.. Pin
Reza Raad12-Jan-09 17:29
Reza Raad12-Jan-09 17:29 
AnswerRe: Problem with XP os.. Pin
Abhijit Jana12-Jan-09 17:29
professionalAbhijit Jana12-Jan-09 17:29 
AnswerRe: Problem with XP os.. Pin
Brij12-Jan-09 17:55
mentorBrij12-Jan-09 17:55 
QuestionDebugging Problem in VS 2005 Pin
MikeCuper12-Jan-09 12:15
MikeCuper12-Jan-09 12:15 
AnswerRe: Debugging Problem in VS 2005 Pin
Rajeesh MP12-Jan-09 17:31
Rajeesh MP12-Jan-09 17:31 
GeneralRe: Debugging Problem in VS 2005 Pin
MikeCuper12-Jan-09 17:56
MikeCuper12-Jan-09 17:56 
Unfortunately, all pages have AutoEventWireup="true", here's a sample of a simple app page:
<![CDATA[<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="ValidaTest._Default" %>]]>



<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Pick a Team Name</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <h2>Pick a name for your team</h2>
    Name:
    <asp:textbox id="txtTeam" runat="server" xmlns:asp="#unknown" />
    <asp:button id="btnValidate" runat="server" text="Go" xmlns:asp="#unknown" />
    <br />
    <asp:requiredfieldvalidator id="reqval_txtTeam" runat="server" xmlns:asp="#unknown">
        ErrorMessage="You must enter a team name."
        ControlToValidate="txtTeam" Display="dynamic" />
    <asp:customvalidator id="custval_txtTeam" runat="server">
        ErrorMessage="That name is already taken. Please pick another."
        ControlToValidate="txtTeam" Display="dynamic"
        OnServerValidate="custval_txtTeam_ServerValidate" />
       <asp:label id="lblResult" runat="server" enableviewstate="false" />    
    </asp:customvalidator></asp:requiredfieldvalidator></div>
    </form>
</body>
</html>


Thanks for trying - it seems to be something deeper. When I press f5, everything executes, just no stopping at breakpoints. The Build is set to Debug as the active, DEBUG and TRACE constants are defined, it's set to full debug mode, any CPU and platform and the ASP.NET debugger is checked.....

Strangest thing.....
AnswerRe: Debugging Problem in VS 2005 Pin
Anshumas12-Jan-09 18:54
Anshumas12-Jan-09 18:54 
GeneralRe: Debugging Problem in VS 2005 Pin
MikeCuper12-Jan-09 19:19
MikeCuper12-Jan-09 19:19 
GeneralRe: Debugging Problem in VS 2005 Pin
Rajeesh MP12-Jan-09 23:53
Rajeesh MP12-Jan-09 23:53 
QuestionThe best overloaded method match for 'System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(string, string)' has some invalid arguments Pin
amistry_petlad12-Jan-09 11:54
amistry_petlad12-Jan-09 11:54 
AnswerRe: The best overloaded method match for 'System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(string, string)' has some invalid arguments Pin
pmarfleet12-Jan-09 12:01
pmarfleet12-Jan-09 12:01 
QuestionASP.NET - Create a questionnaire/test on the fly. Pin
SmartSpider12-Jan-09 8:52
SmartSpider12-Jan-09 8:52 
AnswerRe: ASP.NET - Create a questionnaire/test on the fly. Pin
pmarfleet12-Jan-09 9:18
pmarfleet12-Jan-09 9:18 
GeneralRe: ASP.NET - Create a questionnaire/test on the fly. Pin
SmartSpider12-Jan-09 9:33
SmartSpider12-Jan-09 9:33 
GeneralRe: ASP.NET - Create a questionnaire/test on the fly. Pin
pmarfleet12-Jan-09 9:45
pmarfleet12-Jan-09 9:45 
GeneralRe: ASP.NET - Create a questionnaire/test on the fly. Pin
SmartSpider12-Jan-09 10:25
SmartSpider12-Jan-09 10:25 
GeneralRe: ASP.NET - Create a questionnaire/test on the fly. Pin
pmarfleet12-Jan-09 11:35
pmarfleet12-Jan-09 11:35 
GeneralRe: ASP.NET - Create a questionnaire/test on the fly. Pin
SmartSpider12-Jan-09 17:41
SmartSpider12-Jan-09 17:41 
QuestionRe: ASP.NET - Create a questionnaire/test on the fly. Pin
SmartSpider20-Jan-09 9:13
SmartSpider20-Jan-09 9:13 
AnswerRe: ASP.NET - Create a questionnaire/test on the fly. Pin
pmarfleet20-Jan-09 11:09
pmarfleet20-Jan-09 11:09 
GeneralRe: ASP.NET - Create a questionnaire/test on the fly. Pin
SmartSpider20-Jan-09 11:44
SmartSpider20-Jan-09 11:44 
QuestionFormsAuthentication Failing in IE6 Pin
Robymon12-Jan-09 6:44
Robymon12-Jan-09 6:44 
Questionsession Expire Pin
mohit_p2212-Jan-09 5:49
mohit_p2212-Jan-09 5:49 

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.