Today we shipped the ASP.NET MVC 1.0 Release Candidate (RC). Click here to download it (note: the link just went live so if it isn’t working wait a few minutes for the server you are hitting to refresh). It works with both Visual Studio 2008 and Visual Web Developer 2008 (which is free).
Today’s RC is the last public release of ASP.NET MVC that we’ll ship prior to the final “1.0” release. We expect to ship the final ASP.NET MVC 1.0 release next month.
In addition to bug fixes, today’s build includes several new features. It also includes some refinements to existing features based on customer feedback. Please read the release notes that ship with the ASP.NET MVC download for full details on all changes. The release notes include detailed instructions on how to upgrade existing applications built with the ASP.NET MVC Beta to the RC.
The most commonly used command in jQuery is $(document).ready(). It makes sure code is executed only when a page is fully loaded. We often place code blocks inside this $(document).ready() event.
When guest types something in Username field greater than or equal 3 characters and focus move from it to next field Then, A waiting message will be displayed with small image as loader.gif.
var str_confirm_password = $("#txt_confirm_password").val();if(str_password.length>=3){// Checking Password match code here..}else{// Error message code here..}
Checking Password Match:
When guest types something in Password & Confirm Password fields, and focus move from it to next field. Then, it will check value of both fields. If both field’s value are not same then, an error will be displayed.
var str_password = $("#txt_password").val();var str_confirm_password = $("#txt_confirm_password").val();if(str_password!=str_confirm_password){// If not match, goes here,}else{//If match, goes here.}
“Sign Up Now” Button :
When guest push “Sign Up Now!” button. It goes to next page .
function fn_onclick(){if(str_status =="OK"&& str_pwd_status =="OK"&& str_password !=''&& str_confirm_password !=''){
$("#div_msg").html('<div id="logged_in"> <br />'+'Thanks for Registering <br />'+'<img align="absmiddle" src="loader_bar.gif">'+'<br /> Please wait while we redirect you to welcome page...</div>');
setTimeout('go_to_next_page()',4000);}}function go_to_next_page(){
window.location='welcome.html';}
.removeClass() & .addClass() functions :
.removeClass() & .addClass() functions are used for add styles into username & password fields. In code, ‘css_ok’ & ‘css_error’ regarding from ‘style.css’ . For instance these functions show the box green if the values entered in the boxes are correct & otherwise red color
Base class for all failure audit events, which are raised whenever a security action fails. ASP.NET 2.0 raises these events when URL or file authorization fails to authorize the request.
WebSuccessAuditEvent
Base class for all success audit events, which are raised whenever a security action succeeds. ASP.NET 2.0 raises these events when URL or file authorization succeeds in authorizing the request.
WebAuthenticationFailureAuditEvent
Base class for authentication failure audit events, which are raised whenever an authentication attempt fails. ASP.NET 2.0 raises these events when Membership providers or forms authentication fail to validate provided credentials, or when the forms authentication ticket fails to be decrypted or validated.
WebAuthenticationSuccessAuditEvent
Base class for authentication success audit events, which are raised whenever an authentication attempt succeeds. ASP.NET 2.0 raises these events when Membership providers or forms authentication succeed in validating provided credentials.
WebViewStateFailureAuditEvent
The class for the ViewState failure audit event, which is raised whenever ASP.NET fails to process the ViewState due to an encryption or validation problem.
load("NameList.xml");$x=$xmlDoc->getElementsByTagName('NAME');for($i=0;$i<=$x->length-1;$i++){//Process only element nodesif($x->item($i)->nodeType==1){if($x->item($i)->childNodes->item(0)->nodeValue ==$q){$y=($x->item($i)->parentNode);}}}$cd=($y->childNodes);for($i=0;$i<$cd->length;$i++){//Process only element nodesif($cd->item($i)->nodeType==1){echo($cd->item($i)->nodeName);echo(": ");echo($cd->item($i)->childNodes->item(0)->nodeValue);echo("");}}
?>
Bio: I am Venu Thomas, Software Engineer, Pro-Blogger, Mac and Windows User & Web Addicted. I live in Cochin, Kerala, INDIA. I have done programs in ASP.Net, C#, VB.Net, Java, Javascript, PHP, ASP, SQL, VC++, VB , ORACLE, AppleScript, ect ..