my version: 1.)if PswTextBox.Text = PswConfTextBox.Text Then do something else message "Passwords do not match!!!" 2.)VB if Equals(PswTextBox.Text, PswConfTextBox.Text) then .... else... ~Mole~
Aizupis
Posts
-
Password Confirm Check -
Error: Unterminated string constantI have a problem: I've made 2 aspx pages Licencee.aspx and Reg.aspx (using WebMatrix). In my localcomputer I have no problems, but on server, when I try to open these pages in IE, I recieve this error: "Error: Unterminated string constant" - I can see the text, but cannot access the buttons and other Webcontrols... But interesting is that some time ago I hadnot this problem... Why it is so? Maybe whats wrong happening in server? ~ArmiS~
-
Problem with RequiredFieldValidatori though so..... I wanted do this using Page Load or Refresh, but decided, that it wouldn't be effective...
-
Problem with RequiredFieldValidatorThanx! It helps - but why it is so, why I couldn't change validation propertie Enabled to false, using VB.NET? :-( BTW - I use different way (before U solve my problem) - I drop Validations and use Labels with checkin If .. Then... :-) Bt there were many If, so Your solution is better... :-)) Thanx again.
-
Problem with RequiredFieldValidatorI'm sorry - I'm a beginner in ASP.NET... Therefore I didn't understood where I must put itemCommand = resetControl()". Can U explain me, please?
-
Problem with RequiredFieldValidatorSituation: In may Web page I have RequiredFieldValidators. I have button Back. I need that when I push the Back button, page redirects to other page (Response.Redirect("URL")). But its don't work, because of RequiredFieldValidators. I tried: ReqNAME.Enabled = False, but it's doesn't work too...( But when I Disable this validator at all, not in scripting progress in Button_Clik event, its works.... Why it is so? I tried with Button_Click change other validator Properties, no reactions... ?
-
Problem with RequiredFieldValidatorSituation: In may Web page I have RequiredFieldValidators. I have button Back. I need that when I push the Back button, page redirects to other page (Response.Redirect("URL")). But its don't work, because of RequiredFieldValidators. I tried: ReqNAME.Enabled = False, but it's doesn't work too...:-(( But when I Disable this validator at all, not in scripting progress in Button_Clik event, its works.... Why it is so? I tried with Button_Click change other validator Properties, no reactions... ?
-
Request (Reference to) other pageI just started using WebMatrix and ASP.NET, and I have one problem - I like to know, how I can do it: Situation - I have one page "Licence agreement" with Agree and Disagree; when user click Agree, then must open Registration form (I made it in that way: Response.Redirect("Reg.aspx")). So far is OK! But I need, that the form Reg.aspx opens only when in Licence form users click Agree - shortly - it (Reg) should no opens, when users write in adress bar http://www.xxxxx.com/Reg.aspx... Sorry for my english, but I hope that U understood my problem. I use VB.NET