|
Hi All,
I have some required field and custom validation controls, they are firing on submit but I want those to be firing onblur events also.
Is there any way that we can display the same error messages to the users at onblur event of that particular control using the same required field or custom validation controls.
Its little urgent, please help me, I have been googling for this.
Thanks in advance.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
As per my understanding, implement onblur event on javascript and then validate all required fields in that event.
Is there any issue with onblur event on js side?
Parwej Ahamad
|
|
|
|
|
I am not certain how to specify the startup page. The url that displays when I am running the application is the following:
https:
How do I know what the startup page is from here?
Is the startup page hom.aspx?
|
|
|
|
|
|
|
|
My application is built using C and VB. Can i use Runtime Callable Wrappers to call that dll in asp.net?
Is it possible to call this dll in asp.net?
|
|
|
|
|
Yes,you can call com components developed using VB or C from .net using the wrapper.
Note: your com components should also be registered on the hosting server.
Help people,so poeple can help you.
|
|
|
|
|
|
Hi,
I'm creating a secure area in an application, so a login page is needed. I've been working with the LoginView, together with the SQLMembershipProvider and created the aspnetdb database for storage of the login ID, roles etc.
My question is, is this an acceapable approch to include in a clients application? Maybe it's the lack of programming on my part that makes me ask this.
Also, is it recomended that you use the aspnetdb DB, keeping the membership in a seperate DB to all other data storage?
Thank you
|
|
|
|
|
Just and update - I've been working and reading up more on Forms Authentication since asking the question above.
I've came to the conclusion that using the login controls, together with the role and membership providers that are provided by ASP.NET 2.0, is a suitable approach for supplying clients a secure login area. I have however, decided to include the aspnet (membership) tables in with the applications main DB tables. This keeps the tables all in one location for each application. The aspnet login tables are easy to distinguish from the rest also, as they have the prefix "aspnet_".
I found the following source useful:
http://odetocode.com/Articles/427.aspx[^]
If you know of any other good sources or have a different option from that above, it would be great to hear from you
Melanie
|
|
|
|
|
I am new to testing a 2010 web application using visual studio.net 2010. I want to test the C# web form application using IIS.
I found the following link that says what to use:
http://ukchill.com/technology/setting-up-a-web-project-environment-in-visual-studio-2010-to-allow-debugging-using-both-iis7-and-the-development-web-server/
I am still having problems.
My boss wanted me to setup my test visual studio environment that it is in production on an iis 7 server. Due to that fact,
I did the following since this occurs in production:
1. I removed the default web site and application pools in iis7.
2. I created a new application pool and website in IIS7.
3. I removed the C:\inetpub\wwwroot\directory since they were are part of the stock install.
Now when I am in the visual studio project folder and I want to specify the 'Use local IIS Web server, I get getting the message that it can not create the virtual directory.
I want to point to the physical file that looks like C:\Support, however I do not know how to translate this to a url. Thus can you tell me how to translate this to a url address?
Also what I removed caused visual studio not to recognize how to sworkup with IIS, can you tell me how to restore the values back to the way the default visual studio was setup?
|
|
|
|
|
I have the following question to ask about debugging a web forms 2010 app using iis while using the visual studio.net ide:
The following 2 links shows how to attach to an web forms app while visual studio is running:
http://www.google.com/search?sourceid=navclient&aq=0h&oq=C%23&ie=UTF-8&rlz=1T4ADRA_en___US432&q=c%23.net+corner
http://blogs.msdn.com/b/rickandy/archive/2011/04/22/test-you-asp-net-mvc-or-webforms-application-on-iis-7-in-30-seconds.aspx
Does that mean I would attach to an application that is already deployed to iis on my local computer? If not would that mean my visual studio is setup to use iis as the local web server? Can you explain your answer?
|
|
|
|
|
I want to change my visual studio.net 2010 ide that is used to debug a C# 2010 web application to use iis as the test server. I know that I would change the properties of the web application project folder. However I am not certain how to specify what the virtual directory is. This web application does not use any default web site or application pool. The physical file looks like: C:\Sup\app.
Thus can you tell me how to specify what the virtual directory would be?
|
|
|
|
|
A simple search in google on "vs2010 use local iis web server for debugging" gave me this link...
|
|
|
|
|
I have a C# 2010 web application that I made enhancements to that I need to deploy to a test iis7 server. My problem is that I do not know what the startup page for the web application is. In the visual studio.net 2010 ide, I specify what the startup project file is. However the startup object is not specified.
I am guessing the startup web page is probably in the web.config file. The section I am questioning is the following:
<pre>
<urlMappings enabled="true"> <clear />
<add url="~/Home.aspx" mappedUrl="~/PoHome.aspx" /> <add url="~/use.aspx" mappedUrl="~/Pages/Pro/ue.aspx" /> </urlMappings>
Can you tell me if the startup page is= "~/PoHome.aspx"? If this is not the startup web page, can you tell me how to tell what the startup web page is?
|
|
|
|
|
What page is is loaded if you run the application in VS2010? That would then be your start page?
If you want to set a specific page as the start page:
In VS2010's ide, right click on the page you want to use as the start up page and then select the option "Set as start page" from the context menu.
|
|
|
|
|
Hi All,
I have validation controls on my page and I am using ValidationSummary to show them. But ValidationSummary is displaying messages only when submit button is clicked.
Is there any way to show the ValidationSummary messages immediately after coming out of the control (like onblur). Is there any way to show the user that "This is required field", but the message should be displayed in the ValidationSummary not in the RequiredField validator.
Eventhough I am using RequiredField validator, but when its showing the message its spoiling the page alignments.
So I want to show it in the ValidationSummary but onblur of that particular control.
Is there any way please, anybody please help me, I am desperately need of it please, I am googling too.
Thanks in advance.
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
Start here[^].
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
nils illegitimus carborundum
me, me, me
|
|
|
|
|
I beleive the Validation Summary fires when a post back is attempted. Here[^] is an article that might help.
To get around the page alignment issue, I put an asterisk in the RequiredField Validator text property. That way when the onblur even fires, you will have a little red star appear, which shouldn't affect your layout too much.
|
|
|
|
|
Hi,
I have a web page in which I kept jquery validations. I have kept all these validations in a separate function and calling that function from pageLoad, because I have update panel in the form.
There: are three .js files I am including in it, at one .js file it is saying that "run time error: jquery.validator is null"
I am not understanding why its saying like that, the paths are also correct only, because its not showing error in the script tag at src.
Any help to resolve this please, I have been googling for two days, but no much help. Any link you know or any suggestion, code snippet example anything pls its urgent. I am new to jquery world.
Thanks,
Abdul
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
Basically, your JQuery does not work correctly. It doesn't matter that you have 1, 2 or 3 files.
I don't see any code posted here, So let's see your code for Page.Load() and the first 20 lines of your validator jQuery File, not the master JQuery file or the plugin JQuery File.
|
|
|
|
|
 Hi,
Here is the code that I used in jquery, it is giving error at jquery.validate.creditcard2.js, saying jquery.validate is null, when I commented that script tag completely, it was giving me error like object not found. And I am using update panel for the whole content page.
Is there any help that anybody can give me, really really am in need and am new for the jquery technology.
<script type="text/javascript" src="../../Scripts/jquery-1.7.1.js"></script>
<script type="text/javascript" src="../../Script/Payment.js"></script>
<script type="text/javascript" src="../../Scripts/jquery.validate.creditcard2.js"></script>
<script type="text/javascript">
$.fn.paymentpagevalidation = function() {
var cardholdernameValid = false;
var confirmationValid = false;
$(function ($) {
$("#cardnum").ForceNumericOnly();
});
$(function ($) {
$("#ccMonth").ForceNumericOnly();
});
$(function ($) {
$("#ccYear").ForceNumericOnly();
});
$(function ($) {
$("#securityCode").ForceNumericOnly();
});
$('.validationGroup .causesValidation').click(function (evt) {
var $group = $(this).parents('.validationGroup');
var isValid = true;
$group.find(':input').each(function (i, item) {
if($(item)[0].id != "")
{
if($(item)[0].id != "address2")
{
if (!$(item).valid())
{
isValid = false;
}
}
}
});
if (!isValid)
evt.preventDefault();
});
$.validator.addMethod("dropDownValidator", function (value, element, parameters) {
if (value == '-1'){
return false;
}
else
return true;
});
$.validator.addMethod("monthValidator", function (value, element, parameters) {
if ((value < 1) || (value > 12)){
return false;
}
else if((value >= 1) || (value <= 12)){
return true;
}
else{
return false;
}
});
$("#securityCode").click(function () {
if($("#rblPaymentType input[type=radio]:checked").val()=="AmEx")
{
$("#securityCode").attr('maxlength','4');
}
else
{
$("#securityCode").attr('maxlength','3');
}
});
$.validator.addMethod("securityCodeValidator", function (value, element, parameters) {
if($("#rblPaymentType input[type=radio]:checked").val()=="AmEx")
{
if($("#securityCode").val().length == 4)
{
return true;
}
else
{
return false;
}
}
else
{
if($("#securityCode").val().length == 3)
{
return true;
}
else
{
return false;
}
}
});
$('#form').validate({
rules: {
<%= cardholdername.UniqueID %>: {
required: true,
minlength: 1
},
<%= address1.UniqueID %>: {
required: true,
minlength: 1
},
<%= city.UniqueID %>: {
required: true,
minlength: 1
},
<%= postcode.UniqueID %>: {
required: true
},
<%= ccMonth.UniqueID %>: {
required: true,
minlength: 2,
number: true,
monthValidator: true
},
<%= ccYear.UniqueID %>: {
required: true,
minlength: 2,
number: true
},
<%= securityCode.UniqueID %>: {
required: true,
minlength: 3,
number: true,
securityCodeValidator: true
},
<%= rblPaymentType.UniqueID %>: {
required: true
},
<%= cardnum.UniqueID %>: {
required: true,
number: true
},
<%= ddlCountry.UniqueID %>:
{
dropDownValidator: true
},
<%= ddlState.UniqueID %>:
{
dropDownValidator: true
}
},
messages: {
<%= cardholdername.UniqueID %>: {
required: "Please provide your Cardholder Name",
minlength: "Your Cardholder Name must be at least 1 characters long"
},
<%= address1.UniqueID %>: {
required: "Please provide your Address1",
minlength: "Your Address1 must be at least 1 characters long"
},
<%= city.UniqueID %>: {
required: "Please provide your City",
minlength: "Your City Number be at least 1 characters long"
},
<%= postcode.UniqueID %>: {
required: "Please provide your Postal Code"
},
<%= rblPaymentType.UniqueID %>: {
required: "Please select Credit Card Type"
},
<%= ccMonth.UniqueID %>: {
required: "Please confirm your Credit Card Month",
minlength: "Your Credit Card Month must be at least 2 digits long",
number: "Provide only digits for the month",
monthValidator: "Invalid Month"
},
<%= ccYear.UniqueID %>: {
required: "Please confirm your Credit Card Year",
minlength: "Your Credit Card Year must be at least 2 digits long",
number: "Provide only digits for the year"
},
<%= securityCode.UniqueID %>: {
required: "Please confirm your Security Code",
minlength: "Your Security Code must be at least 3 digits long",
number: "Provide only digits for the security code",
securityCodeValidator: "Please provide 4 digits for AmEx card"
},
<%= cardnum.UniqueID %>: {
required: "Please enter your Credit Card number",
number: "Provide only digits for the credit card number"
},
<%= ddlCountry.UniqueID %>: {
dropDownValidator: "Please Select Country"
},
<%= ddlState.UniqueID %>: {
dropDownValidator: "Please Select State"
}
},
errorElement: "li",
errorLabelContainer: "#errorMessage",
onsubmit: false
});
$("#cardholdername").blur(function () {
var elemTest = $("#cardholdername").valid();
});
$("#address1").blur(function () {
var elemTest = $("#address1").valid();
});
$("#city").blur(function () {
var elemTest = $("#city").valid();
});
$("#ddlState").blur(function () {
var elemTest = $("#ddlState").valid();
});
$("#ddlCountry").blur(function () {
var elemTest = $("#ddlCountry").valid();
});
$("#postcode").blur(function () {
var elemTest = $("#postcode").valid();
});
$("#ccMonth").blur(function () {
var elemTest = $("#ccMonth").valid();
});
$("#ccYear").blur(function () {
var elemTest = $("#ccYear").valid();
});
$("#securityCode").blur(function () {
var elemTest = $("#securityCode").valid();
});
$("#rblPaymentType").blur(function () {
var elemTest = $("#rblPaymentType").valid();
});
$("#cardnum").blur(function () {
var elemTest = $("#cardnum").valid();
});
$("#cardnum").rules("add", {
creditcard2:
function () {
return $("#rblPaymentType input[type=radio]:checked").val();
}
});
};
function pageLoad()
{
paymentpagevalidation();
}
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
|
|
|
|
|
Tonight was my bowling night, and I left early today.
I can't see how that would work. Are you still using update panels?
I'll do you a favor, and rewrite your validation, so you can dump the microsoft validator and do pure jquery with update panels.
I just need to see the browser source code of the textboxes that makeup your credit card program, so I can get the id tags.
From there, you should be able to get an idea of how to use jquery to validate.
OK
|
|
|
|
|
 Hi,
I dont know whats the bowling is, is it base ball bowling or cricket bowling .
Here is the html from view source, please help me.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head id="Head1"><title>
</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /><meta http-equiv="content-language" content="en-us" /><meta name="created" content="2011/06/21" /><meta name="last-modified" content="2011/06/21" />
<script type="text/javascript" src="/Scripts/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="/Scripts/jquery.cycle.min.js"></script>
<script type="text/javascript" src="/Scripts/analytics.js"></script>
<script type="text/javascript" src="/Scripts/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="/Scripts/core.js"></script>
<script type="text/javascript" src="/Script/jquery.ba-tinypubsub.min.js"></script>
<script type="text/javascript" src="/Scripts/jquery.validate.min.js" charset="ISO-8859-1"></script>
<script type="text/javascript" src="/Script/Utility.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="http://www.wsdot.wa.gov/media/styles/styles.css" /><link rel="stylesheet" type="text/css" media="print" href="http://www.wsdot.wa.gov/media/styles/print.css" /><link rel="stylesheet" type="text/css" media="screen" href="../../css/ferries_reservations.css" /><link rel="shortcut icon" href="http://www.wsdot.wa.gov/favicon.ico" />
<script type="text/javascript">
var localURL = 'http://localhost:1500/Service/';
var MaxVehLength = '79';
function switchto(q) {
if (q) {
document.getElementById('passwordtext').style.display = "none";
document.getElementById('inPwd').style.display = "inline";
document.getElementById('inPwd').focus();
} else {
document.getElementById('inPwd').style.display = "none";
document.getElementById('passwordtext').style.display = "inline";
}
}
function emailprompt(em) {
if (em.value == 'Email address') {
em.value = '';
}
else if (em.value == '') {
em.value = 'Email address';
}
}
function capLock(e) {
kc = e.keyCode ? e.keyCode : e.which;
sk = e.shiftKey ? e.shiftKey : ((kc == 16) ? true : false);
if (((kc >= 65 && kc <= 90) && !sk) || ((kc >= 97 && kc <= 122) && sk))
document.getElementById('divMayus').style.visibility = 'visible';
else
document.getElementById('divMayus').style.visibility = 'hidden';
}
function capLockClaen() {
document.getElementById('divMayus').style.visibility = 'hidden';
}
</script>
</head>
<body>
<div id="header">
<div class="topban">
<ul class="topnav">
<li><a href="http://www.wsdot.wa.gov/">WSDOT Home</a></li>
<li><a href="http://www.wsdot.wa.gov/contact/">Contact Us</a></li>
<li><a href="http://www.wsdot.wa.gov/goodtogo/">Good To Go!</a></li>
<li><a href="http://www.wsdot.wa.gov/employment/">Employment</a></li>
<li class="first"><a href="http://www.wsdot.wa.gov/news/">News</a></li>
</ul>
</div>
<div class="logo">
<h1>
<a href="http://www.wsdot.wa.gov">
<img src="http://www.wsdot.wa.gov/media/images/blacklogo.gif" alt="WSDOT" /></a>
</h1>
<div class="emailupdates">
<a href="http://service.govdelivery.com/service/multi_subscribe.html?code=WADOT"
onclick="window.open('http://service.govdelivery.com/service/multi_subscribe.html?code=WADOT','Popup','width=780,height=440,toolbar=no,scrollbars=yes,resizable=yes'); return false"
title="Sign up for e-mail updates">Email updates</a></div>
</div>
<div class="mainban">
<div class="mainnav">
<ul>
<li><a href="http://www.wsdot.wa.gov/traffic/" title="Statewide Traveler Information">
Traffic & Cameras</a></li>
<li><a href="http://www.wsdot.wa.gov/projects/" title="Highway, Ferry and Rail Construction Projects">
Projects</a></li>
<li><a href="http://www.wsdot.wa.gov/business/" title="Information on Doing Business with WSDOT">
Business</a></li>
<li><a href="http://www.wsdot.wa.gov/environment/" title="What does WSDOT do for the environment?">
Environment</a></li>
<li><a href="http://www.wsdot.wa.gov/mapsdata.htm" title="Maps, Publications and Transporation Data">
Maps & Data</a></li>
</ul>
<div class="search">
<form id="searchform" method="get" action="http://usasearch.gov/search">
<input type="hidden" name="affiliate" value="WSDOT" />
<input type="hidden" name="v:project" value="firstgov" />
<input type="text" name="query" id="query-field" class="search-text" />
<input type="submit" value="Search" class="searchButton" />
</form>
</div>
</div>
</div>
</div>
<div class="breadcrumbs">
You are Here: <a href="http://www.wsdot.wa.gov">Home</a> > <a href="http://www.wsdot.wa.gov/ferries/">
Ferries</a></div>
<form method="post" action="AccountHolderPayment.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="MainForm">
<div class="aspNetHidden">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTIwODk5NDc1NDAPFgQeC3VzZXJBY3RJbmZvMvkNAAEAAAD/////AQAAAAAAAAAMAgAAAENQdWJsaWNWUlNMaWIsIFZlcnNpb249MC41LjMuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1udWxsBQEAAAAtV1NET1QuV1NGLldlYkFwcC5QdWJsaWNWUlNMaWIuVXNlckFjY291bnRJbmZvJAAAABg8RW1haWxJRD5rX19CYWNraW5nRmllbGQmPFVzZXJFbWFpbFZlcmlmaWVkRmxhZz5rX19CYWNraW5nRmllbGQaPEFjY291bnRJRD5rX19CYWNraW5nRmllbGQYPE9yZGVySWQ+a19fQmFja2luZ0ZpZWxkJjxQcmV2aW91c1Jlc2VydmF0aW9uSUQ+a19fQmFja2luZ0ZpZWxkJDxQcmV2aW91c09yZGVySXRlbUlEPmtfX0JhY2tpbmdGaWVsZB48QWNjb3VudFR5cGVJRD5rX19CYWNraW5nRmllbGQgPEFjY291bnRUeXBlRW51bT5rX19CYWNraW5nRmllbGQiPEFjY291bnRBY3RpdmVGbGFnPmtfX0JhY2tpbmdGaWVsZCI8QWNjb3VudExvb2tVcENvZGU+a19fQmFja2luZ0ZpZWxkGjxBY2NBZGRySUQ+a19fQmFja2luZ0ZpZWxkIzxTdHJlZXRBZGRyZXNzTGluZTE+a19fQmFja2luZ0ZpZWxkIzxTdHJlZXRBZGRyZXNzTGluZTI+a19fQmFja2luZ0ZpZWxkFTxDaXR5PmtfX0JhY2tpbmdGaWVsZBo8Q291bnRyeUlkPmtfX0JhY2tpbmdGaWVsZBw8Q291bnRyeU5hbWU+a19fQmFja2luZ0ZpZWxkGDxTdGF0ZUlkPmtfX0JhY2tpbmdGaWVsZBo8U3RhdGVOYW1lPmtfX0JhY2tpbmdGaWVsZBs8UG9zdGFsQ29kZT5rX19CYWNraW5nRmllbGQkPEFjY291bnRDaGFsbGVuZ2VJRDE+a19fQmFja2luZ0ZpZWxkJDxBY2NvdW50Q2hhbGxlbmdlSUQyPmtfX0JhY2tpbmdGaWVsZBw8dXNlclF1ZXNJRDE+a19fQmFja2luZ0ZpZWxkHDx1c2VyUXVlc0lEMj5rX19CYWNraW5nRmllbGQcPHVzZXJBbnN3ZXIxPmtfX0JhY2tpbmdGaWVsZBw8dXNlckFuc3dlcjI+a19fQmFja2luZ0ZpZWxkHjx1c2VyQ29udGFjdE5vPmtfX0JhY2tpbmdGaWVsZBo8Rmlyc3ROYW1lPmtfX0JhY2tpbmdGaWVsZBk8TGFzdE5hbWU+a19fQmFja2luZ0ZpZWxkGTxQZXJzb25JRD5rX19CYWNraW5nRmllbGQgPEFjY291bnRUeXBlTmFtZT5rX19CYWNraW5nRmllbGQgPEFjY291bnRSb2xlTmFtZT5rX19CYWNraW5nRmllbGQkPFByZW1pZXJEaXNhYmxlZEZhbGc+a19fQmFja2luZ0ZpZWxkJzxNdWx0aVJpZGVSZXZhbHVlQ2FyZE5vPmtfX0JhY2tpbmdGaWVsZCQ8UHJpbWFyeUNoYXJnZUNhcmRJRD5rX19CYWNraW5nRmllbGQdPEJ1c2luZXNzTmFtZT5rX19CYWNraW5nRmllbGQhPFdTRkFjY291bnROdW1iZXI+a19fQmFja2luZ0ZpZWxkAQAAAAAAAAQAAQABAQEAAQABAQAAAAABAQEBAQABAQABAAEBAQgICAgIKVdTRE9ULldTRi5XZWJBcHAuUHVibGljVlJTTGliLkFjY291bnRUeXBlAgAAAAEICAgICAgICAEIAgAAAAYDAAAAH01vaGFtbUFAY29uc3VsdGFudC53c2RvdC53YS5nb3YBBTAAAAAAAAAAAAAAAAAAAAEAAAAF/P///ylXU0RPVC5XU0YuV2ViQXBwLlB1YmxpY1ZSU0xpYi5BY2NvdW50VHlwZQEAAAAHdmFsdWVfXwAIAgAAAAYAAAABBgUAAAARNzU1MTEyNTUwNDAzNDIxMzOVFwAABgYAAAAXODQyMyBTb3V0aCAxMjB0aCBTdHJlZXQGBwAAABc4NDIzIFNvdXRoIDEyMHRoIFN0cmVldAYIAAAAB1NlYXR0bGXoAAAABgkAAAAYVW5pdGVkIFN0YXRlcyBvZiBBbWVyaWNhMAAAAAYKAAAACldhc2hpbmd0b24GCwAAAAU5ODE3OGEIAABiCAAAIgAAABMAAAAGDAAAAAFuBg0AAAABbgYOAAAADDQwOC00MzEtMjcyMQYPAAAAC0FiZHVsIEFsZWVtBhAAAAAITW9oYW1tYWTRMgAABhEAAAAHR2VuZXJhbAkRAAAAAAoAAAAABhIAAAAACRIAAAALHhVBY2NvdW50Q2hhcmdlQ2FyZEluZm9kFgJmD2QWAgIDD2QWBgIDD2QWAgIBD2QWAmYPFgIeBFRleHQFTEhlbGxvLCBBYmR1bCBBbGVlbSBNb2hhbW1hZCBXZWxjb21lIHRvIHlvdXIgU2F2ZSBBIFNwb3QgcmVzZXJ2YXRpb24gYWNjb3VudC5kAgcPZBYCAgIPZBYCZg9kFgwCAQ8WAh8CBRRBYmR1bCBBbGVlbSBNb2hhbW1hZGQCAw8WAh8CBQw0MDgtNDMxLTI3MjFkAgUPEA8WBh4NRGF0YVRleHRGaWVsZAUaQ2hhcmdlQ2FyZEZvcm1hdGVkTGFzdEZvdXIeDkRhdGFWYWx1ZUZpZWxkBRNBY2NvdW50Q2hhcmdlQ2FyZElkHgtfIURhdGFCb3VuZGdkEBUBCVNlbGVjdC4uLhUBAi0xFCsDAWcWAWZkAgcPEA8WAh4HQ2hlY2tlZGdkZGRkAgkPZBYKAgsPD2QWBB4Gb25CbHVyBSdyZXR1cm4gb25seU1vbnRoKCdNYWluQ29udGVudF9jY01vbnRoJykeCm9ua2V5cHJlc3MFFXJldHVybiBvbmx5TnVtYmVycygpO2QCDQ8PZBYCHwgFFXJldHVybiBvbmx5TnVtYmVycygpO2QCFQ8PZBYCHwgFFXJldHVybiBvbmx5TnVtYmVycygpO2QCJw8QDxYGHwMFC0NvdW50cnlOYW1lHwQFCUNvdW50cnlJZB8FZ2QQFQUJU2VsZWN0Li4uCUF1c3RyYWxpYQZDYW5hZGEYVW5pdGVkIFN0YXRlcyBvZiBBbWVyaWNhHFVuaXRlZCBTdGF0ZXMgVmlyZ2luIElzbGFuZHMVBQItMQIxNAI0MAMyMzIDMjMzFCsDBWdnZ2dnFgFmZAIrDxBkEBUBCVNlbGVjdC4uLhUBAi0xFCsDAWdkZAIRDxYCHwIFBSQ4Ljc1ZAIJDw8WBB8CBQ9WZXJzaW9uIDAuNS4zLjAeB1Zpc2libGVnZGQYAgUeX19Db250cm9sc1JlcXVpcmVQb3N0QmFja0tleV9fFgIFKmN0bDAwJE1haW5Db250ZW50JGNoa1BheVdpdGhBTmV3Q3JlZGl0Q2FyZAUfY3RsMDAkTWFpbkNvbnRlbnQkY2hrU2F2ZUNDSW5mbwUUY3RsMDAkTG9nSW5NdWx0aVZpZXcPD2QCAWRzbbvImUZ4LR3Z7BBzyW4EWKtmjgc6lHC16Jg+XhFLCQ==" />
</div>
<script type="text/javascript">
var theForm = document.forms['MainForm'];
if (!theForm) {
theForm = document.MainForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
</script>
<script src="/WebResource.axd?d=FjPTT5k0s7rWNSwehkc3N8nw9gzXuhosUnzgi0goWC1qLlVw8FejBPn5_LWAyRqIPMeWGxbIQrHatf_DLOXptluA-IhMzamBUn9BmsPwfyY1&t=634690584266056070" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=7Xth24T1ZxfhLGIjvebEyrqXzaZV2l7g2yykbCLgsq-2-zinuoyPuJJ-8QsHRrGQSRXoUEzQ5DKjGPh-mkyhmVEAAz_GxFvwCGRhxop8OCpQAZlbAOs4xe6dLoYD1y7NnbjH0TVJcmhKKemiAji43xgvklEYLk6r9CaAlbDV-VI1&t=150492e7" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=QW99NAq4KkY6u3kHxIMupeJle_oH8O8HedI6IpcZi96Vdtt2Qv2aIobL1qBz_UD9ErQorK9pEn3j8tUa2DGnbFOtMuMD6RoIKKsLWFCKlvtfR8RbpDm4ADWeNVEndKbjzl7UoZsQAKcB8jvSkUmd8qmd5sfbUgw-0fBgDtoWIdzydkDxZ88RZ-OivkFrwAoR0&t=ffffffff940d030f" type="text/javascript"></script>
<script type="text/javascript">
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
</script>
<script src="/ScriptResource.axd?d=gOCp8dgJYeFxE6ZytUbCCyWfpp6ytTlx7_jwq3zD47u3MKvPBC0FdMfPLSxEmzr-RxZjGzpC7rU99V-jc_uDQL6-DcHRaVkwNFkqt7PUzHzUDGzqYnWARp3b4iRdDl7rRaCG4DW4tnD7HV8MWTKNyYpAoHfOu04GJPugPGtpnTkQvK6LYL8e05AdVJWeSCcK0&t=ffffffff940d030f" type="text/javascript"></script>
<script type="text/javascript">
function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
return true;
}
</script>
<div id="wrapper">
<!-- Begin: Left navigation box -->
<div id="ctl00_LeftNavColumn" class="leftnav">
<a id="sailinglink" href="../../SailingSchedule.aspx">
<img src="/images/WSFVRSlogo.jpg" width="163" height="40" alt="Washington State Ferries Vehicle Reservations"/>
</a>
<!-- Begin: After LOGIN -->
<div class="heading_lg">
<h4 class="inverse ptm">My Account</h4>
</div>
<div id="Div2" style="padding-bottom:10px;">
<div class="sizeAccount lt">
<p>Hello, Abdul Aleem Mohammad Welcome to your Save A Spot reservation account.</p>
</div>
<div class="heading_lg">
<h4 class="inverse pts ">Manage a Reservation</h4>
</div>
<div class="sizeAccount pts pbs lt mbm">
<ul>
<li>
<a id="lkbChangecancelView" href="javascript:__doPostBack('ctl00$lkbChangecancelView','')">Cancel, Change, or View a reservation</a></li>
<li> <a id="lkbManageMyAccount" href="javascript:__doPostBack('ctl00$lkbManageMyAccount','')">Manage my account</a></li>
<li><a href="/LogOff.aspx">Sign out</a></li>
</ul>
</div>
</div>
<!-- END: After LOGIN -->
<div class="leftnavbox">
<h4 class="header greyBg">
Most Requested</h4>
<div class="content">
<ul>
<li><a href="http://www.wsdot.wa.gov/ferries/schedule/">Current Schedule</a></li>
<li><a href="http://www.wsdot.wa.gov/ferries/wave2go/">Buy Ferry Tickets</a></li>
<li><a href="https://business.wsdot.wa.gov/ferries/reservations/">Reservations</a></li>
<li><a href="http://www.wsdot.wa.gov/ferries/fares/">Fares</a></li>
<li><a href="http://www.wsdot.wa.gov/ferries/info_desk/terminals/">Find Your Terminal</a></li>
<li><a href="http://www.wsdot.wa.gov/ferries/cameras/index.cfm">Ferry Cameras</a></li>
<li><a href="http://www.wsdot.wa.gov/ferries/infodesk/contact.htm">Contact WSF</a></li>
</ul>
</div>
</div>
</div>
<!-- End: Left navigation box -->
<!----START: RESERVATION MAIN--->
<div id="res_main">
<h2 class="title2 pbm pts plm"><span id="lblPageTitle">Washington State Ferries Vehicle Reservations</span></h2>
<!--START: Green header--->
<script type="text/javascript" src="../../Scripts/jquery-1.7.1.js"></script>
<script type="text/javascript" src="../../Script/Payment.js"></script>
<script type="text/javascript" src="../../Scripts/jquery.validate.creditcard2.js"></script>
<script type="text/javascript">
$.fn.paymentpagevalidation = function() {
var cardholdernameValid = false;
var confirmationValid = false;
$(function ($) {
$("#cardnum").ForceNumericOnly();
});
$(function ($) {
$("#ccMonth").ForceNumericOnly();
});
$(function ($) {
$("#ccYear").ForceNumericOnly();
});
$(function ($) {
$("#securityCode").ForceNumericOnly();
});
$('.validationGroup .causesValidation').click(function (evt) {
var $group = $(this).parents('.validationGroup');
var isValid = true;
$group.find(':input').each(function (i, item) {
if($(item)[0].id != "")
{
if($(item)[0].id != "address2")
{
if (!$(item).valid())
{
isValid = false;
}
}
}
});
if (!isValid)
evt.preventDefault();
});
$.validator.addMethod("dropDownValidator", function (value, element, parameters) {
if (value == '-1'){
return false;
}
else
return true;
});
$.validator.addMethod("monthValidator", function (value, element, parameters) {
if ((value < 1) || (value > 12)){
return false;
}
else if((value >= 1) || (value <= 12)){
return true;
}
else{
return false;
}
});
$("#securityCode").click(function () {
if($("#rblPaymentType input[type=radio]:checked").val()=="AmEx")
{
$("#securityCode").attr('maxlength','4');
}
else
{
$("#securityCode").attr('maxlength','3');
}
});
$.validator.addMethod("securityCodeValidator", function (value, element, parameters) {
if($("#rblPaymentType input[type=radio]:checked").val()=="AmEx")
{
if($("#securityCode").val().length == 4)
{
return true;
}
else
{
return false;
}
}
else
{
if($("#securityCode").val().length == 3)
{
return true;
}
else
{
return false;
}
}
});
$('#form').validate({
rules: {
ctl00$MainContent$cardholdername: {
required: true,
minlength: 1
},
ctl00$MainContent$address1: {
required: true,
minlength: 1
},
ctl00$MainContent$city: {
required: true,
minlength: 1
},
ctl00$MainContent$postcode: {
required: true
},
ctl00$MainContent$ccMonth: {
required: true,
minlength: 2,
number: true,
monthValidator: true
},
ctl00$MainContent$ccYear: {
required: true,
minlength: 2,
number: true
},
ctl00$MainContent$securityCode: {
required: true,
minlength: 3,
number: true,
securityCodeValidator: true
},
ctl00$MainContent$rblPaymentType: {
required: true
},
ctl00$MainContent$cardnum: {
required: true,
number: true
},
ctl00$MainContent$ddlCountry:
{
dropDownValidator: true
},
ctl00$MainContent$ddlState:
{
dropDownValidator: true
}
},
messages: {
ctl00$MainContent$cardholdername: {
required: "Please provide your Cardholder Name",
minlength: "Your Cardholder Name must be at least 1 characters long"
},
ctl00$MainContent$address1: {
required: "Please provide your Address1",
minlength: "Your Address1 must be at least 1 characters long"
},
ctl00$MainContent$city: {
required: "Please provide your City",
minlength: "Your City Number be at least 1 characters long"
},
ctl00$MainContent$postcode: {
required: "Please provide your Postal Code"
},
ctl00$MainContent$rblPaymentType: {
required: "Please select Credit Card Type"
},
ctl00$MainContent$ccMonth: {
required: "Please confirm your Credit Card Month",
minlength: "Your Credit Card Month must be at least 2 digits long",
number: "Provide only digits for the month",
monthValidator: "Invalid Month"
},
ctl00$MainContent$ccYear: {
required: "Please confirm your Credit Card Year",
minlength: "Your Credit Card Year must be at least 2 digits long",
number: "Provide only digits for the year"
},
ctl00$MainContent$securityCode: {
required: "Please confirm your Security Code",
minlength: "Your Security Code must be at least 3 digits long",
number: "Provide only digits for the security code",
securityCodeValidator: "Please provide 4 digits for AmEx card"
},
ctl00$MainContent$cardnum: {
required: "Please enter your Credit Card number",
number: "Provide only digits for the credit card number"
},
ctl00$MainContent$ddlCountry: {
dropDownValidator: "Please Select Country"
},
ctl00$MainContent$ddlState: {
dropDownValidator: "Please Select State"
}
},
errorElement: "li",
errorLabelContainer: "#errorMessage",
onsubmit: false
});
$("#cardholdername").blur(function () {
var elemTest = $("#cardholdername").valid();
});
$("#address1").blur(function () {
var elemTest = $("#address1").valid();
});
$("#city").blur(function () {
var elemTest = $("#city").valid();
});
$("#ddlState").blur(function () {
var elemTest = $("#ddlState").valid();
});
$("#ddlCountry").blur(function () {
var elemTest = $("#ddlCountry").valid();
});
$("#postcode").blur(function () {
var elemTest = $("#postcode").valid();
});
$("#ccMonth").blur(function () {
var elemTest = $("#ccMonth").valid();
});
$("#ccYear").blur(function () {
var elemTest = $("#ccYear").valid();
});
$("#securityCode").blur(function () {
var elemTest = $("#securityCode").valid();
});
$("#rblPaymentType").blur(function () {
var elemTest = $("#rblPaymentType").valid();
});
$("#cardnum").blur(function () {
var elemTest = $("#cardnum").valid();
});
$("#cardnum").rules("add", {
creditcard2:
function () {
return $("#rblPaymentType input[type=radio]:checked").val();
}
});
};
function pageLoad()
{
paymentpagevalidation();
}
</script>
<script type="text/javascript">
Sys.WebForms.PageRequestManager._initialize('ctl00$MainContent$smPayment', 'MainForm', ['tctl00$MainContent$updatepanel1','MainContent_updatepanel1'], ['ctl00$MainContent$ddlPayWithACreditCardOnFile','MainContent_ddlPayWithACreditCardOnFile','ctl00$MainContent$chkPayWithANewCreditCard','MainContent_chkPayWithANewCreditCard','ctl00$MainContent$ddlCountry','MainContent_ddlCountry'], [], 90, 'ctl00');
</script>
<div id="MainContent_updatepanel1Updateprogress1" style="display:none;">
<div id="progressBackgroundFilter"></div>
<div id="processMessage"> Please wait ...<br /><br />
<img alt="Loading" src="../../images/ajax-loader.gif" />
</div>
</div>
<div id="MainContent_updatepanel1">
<div id="res_main">
<div id="reservation_container">
<!--START: Green header--->
<div class="main_headerbar_childpage">
<h4 class="inverse pts plm">Payment Information</h4>
</div>
<!--END:Green header-->
<!--START: ORDER SUMMARY MAIN CONTAINER-->
<!--START: mod-->
<div class="mod simpleExt"> class="top"__^</b__^
<div> <!--class="inner ptxl"-->
<div class="sizeAccount ptm" >
<!--START: CREDIT CARD INFO-->
<div class="line">
<div class="unit size1of2">
<h2 class="pln">Reservation Holder Details</h2>
<p>^__strong__^Reservation Holder Name:<br />
Abdul Aleem Mohammad</p>
<P>^__strong>Reservation Holder Phone:<br />
408-431-2721</p>
</div>
<div class="unit size1of2 lastUnit">
<h2 class="pln">Payment Details</h2>
<p class="ptn">Pay with a Credit Card on file:
<select name="ctl00$MainContent$ddlPayWithACreditCardOnFile" onchange="javascript:setTimeout('__doPostBack(\'ctl00$MainContent$ddlPayWithACreditCardOnFile\',\'\')', 0)" id="MainContent_ddlPayWithACreditCardOnFile" tabindex="7" style="width:200px;">
<option selected="selected" value="-1">Select...</option>
</select>
</p>
<p class="ptn">
<input id="MainContent_chkPayWithANewCreditCard" type="checkbox" name="ctl00$MainContent$chkPayWithANewCreditCard" checked="checked" onclick="javascript:setTimeout('__doPostBack(\'ctl00$MainContent$chkPayWithANewCreditCard\',\'\')', 0)" /> Pay with a new credit card
</p>
</div>
</div>
<div class="hz_line"></div>
<div id="MainContent_panNewCardInfo">
<div class="line">
<div class="unit size1of4"> ^__strong>
<p>Payment Details</p>
<p align="right" >Payment Type:</p>
<br />
<br />
<p align="right" class="ptm">Card Number:</p>
<br />
<p align="right" >Expiration Date:</p>
<br />
<p align="right" >Security Code:</p>
</div>
<div class="unit size1of4 ptxl">
<div class="payment_logos" style="float:left;">
<fieldset>
<table id="MainContent_rblPaymentType" onclick="javascript: OnRadioSelection(this);" style="width:30px;">
<tr>
<td><input id="MainContent_rblPaymentType_0" type="radio" name="ctl00$MainContent$rblPaymentType" value="Visa" /><label for="MainContent_rblPaymentType_0"><br /><img src="../../images/logo_visa.jpg" width="30" height="20" alt="Visa logo" /><br /></label></td><td><input id="MainContent_rblPaymentType_1" type="radio" name="ctl00$MainContent$rblPaymentType" value="MasterCard" /><label for="MainContent_rblPaymentType_1"><br /><img src="../../images/logo_mastercard.jpg" width="30" height="20" alt="Mastercard logo" /><br /></label></td><td><input id="MainContent_rblPaymentType_2" type="radio" name="ctl00$MainContent$rblPaymentType" value="Discover" /><label for="MainContent_rblPaymentType_2"><br /><img src="../../images/logo_discover.jpg" width="30" height="20" alt="Discover card logo" /><br /></label></td><td><input id="MainContent_rblPaymentType_3" type="radio" name="ctl00$MainContent$rblPaymentType" value="AmEx" /><label for="MainContent_rblPaymentType_3"><br /><img src="../../images/logo_american-express.jpg" width="30" height="20" alt="America Express logo" /><br /></label></td>
</tr>
</table>
<span id="MainContent_rfvrblPaymentType" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Payment Type is required!</span>
</fieldset>
<br />
<br />
<input name="ctl00$MainContent$cardnum" type="text" maxlength="19" id="MainContent_cardnum" tabindex="12" />
<span id="MainContent_rfvcardnum" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Card number is required!</span>
<span id="MainContent_cvCardnum" style="color:Red;visibility:hidden;">Not a valid number.<br/></span>
<input name="ctl00$MainContent$ccMonth" type="text" maxlength="2" id="MainContent_ccMonth" tabindex="13" onBlur="return onlyMonth('MainContent_ccMonth')" onkeypress="return onlyNumbers();" style="width: 25px;" />
/
<input name="ctl00$MainContent$ccYear" type="text" maxlength="2" id="MainContent_ccYear" tabindex="14" onkeypress="return onlyNumbers();" style="width: 25px;" />
<br />
<span id="MainContent_rfvccMonth" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Month is required!</span>
<span id="MainContent_cvMonth" style="color:Red;visibility:hidden;">Not a valid month.<br/></span>
<span id="MainContent_rfvccYear" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Year is required!</span>
<br />
<input name="ctl00$MainContent$securityCode" type="text" maxlength="3" id="MainContent_securityCode" tabindex="15" onkeypress="return onlyNumbers();" style="width: 35px;" />
<span id="MainContent_rfvsecurityCode" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Security Code is required!</span>
</div>
</div>
<div class="unit size1of4"> ^__strong>
<p>Cardholder Information</p>
<p align="right">Cardholder Name:</p>
<p align="right">Address line 1:</p>
<p align="right">Address line 2:<br />
(Optional) </p>
<p align="right">City:</p>
<br />
<p align="right">Country</p>
<p align="right">State/Province:</p>
<p align="right">Postal Code:</p>
</div>
<div class="unit size1of4 ptxl lastUnit">
<input name="ctl00$MainContent$cardholdername" type="text" maxlength="100" id="MainContent_cardholdername" tabindex="16" />
<span id="MainContent_rfvcardholdername" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Cardholder name is required!</span><br /><br />
<input name="ctl00$MainContent$address1" type="text" maxlength="50" id="MainContent_address1" tabindex="17" />
<span id="MainContent_rfvaddress1" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Address line1 is required!</span><br /><br />
<input name="ctl00$MainContent$address2" type="text" maxlength="50" id="MainContent_address2" tabindex="18" /><br /><br /><br />
<input name="ctl00$MainContent$city" type="text" maxlength="50" id="MainContent_city" tabindex="19" />
<span id="MainContent_rfvcity" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>City is required!</span><br /><br />
<select name="ctl00$MainContent$ddlCountry" onchange="javascript:setTimeout('__doPostBack(\'ctl00$MainContent$ddlCountry\',\'\')', 0)" id="MainContent_ddlCountry" tabindex="20" style="width:155px;">
<option selected="selected" value="-1">Select...</option>
<option value="14">Australia</option>
<option value="40">Canada</option>
<option value="232">United States of America</option>
<option value="233">United States Virgin Islands</option>
</select>
<span id="MainContent_rfvddlCountry" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Select Country!</span>
<br />
<select name="ctl00$MainContent$ddlState" id="MainContent_ddlState" tabindex="21" style="width:100px;">
<option value="-1">Select...</option>
</select>
<span id="MainContent_rfvddlState" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Select a State!</span><br />
<br />
<input name="ctl00$MainContent$postcode" type="text" maxlength="12" id="MainContent_postcode" tabindex="22" />
<span id="MainContent_rfvpostcode" style="color:Red;font-size:X-Small;visibility:hidden;"><br/>Postal code is required!</span>
</div>
</div>
</div>
<p class="ptn">
<input id="MainContent_chkSaveCCInfo" type="checkbox" name="ctl00$MainContent$chkSaveCCInfo" /><label for="MainContent_chkSaveCCInfo"> Save this credit card information to my account</label>
</p>
<div>
<ul id="MainContent_errorMessage" class="error">
<!--errors here-->
</ul>
</div>
<div class="button leftbigbox">
<div style="height:290px;"></div>
<div class="row">
<input name="ctl00$MainContent$btnBack" type="button" id="MainContent_btnBack" value="Back" class="button green backbutton" tabindex="20" onclick="goBack()" />
</div>
</div>
<div class="payment_box right" style="margin-bottom:10px;">
<div class="confirmation_reminder" >
<ul>
<li>
Any additional vehicle and driver fare owed will be<br /> collected at the tollbooth.
</li>
<li>
Passengers may purchase their tickets at the tollbooth.
</li>
<li>
Please arrive 30 minutes prior to reserved sailing <br />departure.
</li>
<li>
Seniors and disabled drivers receive ticket discounts with<br /> valid ID.
</li>
<li>
This reservation includes the vehicle and driver.
</li>
</ul>
</div>
<div class="payment_total">
<p>Total Due Now: $8.75</p>
</div>
<div class="row">
</div>
<div class="button right">
<input type="submit" name="ctl00$MainContent$btnPayNow" value="PAY NOW" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContent$btnPayNow", "", true, "", "", false, false))" id="MainContent_btnPayNow" tabindex="19" class="button green right causesValidation" />
</div>
</div>
<div class="row">
</div>
^__b class="bl"> </div>
</div>
<!--END:Mod-->
</div>
</div>
<!---END: CREDIT CARD INFO-->
<div class="cl"></div>
</div>
<div class="cl"></div>
</div>
<div class="corners-bottom"></div>
</div>
<!--/PAGEWATCH-->
<div class="cl">
</div>
</div>
<div class="cl">
</div>
</div>
<div class="corners-bottom">
</div>
<!-- Begin: Footer -->
<div class="corners-top">
</div>
<div class="footer">
<ul class="bottomnav">
<li class="first"><a href="http://www.wsdot.wa.gov/traffic/">Traffic & Cameras</a></li>
<li><a href="http://www.wsdot.wa.gov/search/">Search</a></li>
<li><a href="http://www.wsdot.wa.gov/contact/">Contact Us</a></li>
<li><a href="http://www.wsdot.wa.gov/siteindex/">Site Index</a></li>
<li><a href="http://www.wsdot.wa.gov/policy/privacy.htm">Privacy Policy</a></li>
<li class="last"><a href="http://www.wsdot.wa.gov/policy/accessibility">Accessibility
/ Title VI</a> </li>
</ul>
<div class="copyright">
Copyright WSDOT © 2012<p>
</p>
<span id="versionLabel" style="font-weight:bold;">Version 0.5.3.0</span>
</div>
</div>
<script type="text/javascript">
var Page_Validators = new Array(document.getElementById("MainContent_rfvrblPaymentType"), document.getElementById("MainContent_rfvcardnum"), document.getElementById("MainContent_cvCardnum"), document.getElementById("MainContent_rfvccMonth"), document.getElementById("MainContent_cvMonth"), document.getElementById("MainContent_rfvccYear"), document.getElementById("MainContent_rfvsecurityCode"), document.getElementById("MainContent_rfvcardholdername"), document.getElementById("MainContent_rfvaddress1"), document.getElementById("MainContent_rfvcity"), document.getElementById("MainContent_rfvddlCountry"), document.getElementById("MainContent_rfvddlState"), document.getElementById("MainContent_rfvpostcode"));
</script>
<script type="text/javascript">
var MainContent_rfvrblPaymentType = document.all ? document.all["MainContent_rfvrblPaymentType"] : document.getElementById("MainContent_rfvrblPaymentType");
MainContent_rfvrblPaymentType.controltovalidate = "MainContent_rblPaymentType";
MainContent_rfvrblPaymentType.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvrblPaymentType.initialvalue = "";
var MainContent_rfvcardnum = document.all ? document.all["MainContent_rfvcardnum"] : document.getElementById("MainContent_rfvcardnum");
MainContent_rfvcardnum.controltovalidate = "MainContent_cardnum";
MainContent_rfvcardnum.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvcardnum.initialvalue = "";
var MainContent_cvCardnum = document.all ? document.all["MainContent_cvCardnum"] : document.getElementById("MainContent_cvCardnum");
MainContent_cvCardnum.controltovalidate = "MainContent_cardnum";
MainContent_cvCardnum.errormessage = "Not a valid number.<br/>";
MainContent_cvCardnum.evaluationfunction = "CustomValidatorEvaluateIsValid";
MainContent_cvCardnum.clientvalidationfunction = "isValidCreditCard";
var MainContent_rfvccMonth = document.all ? document.all["MainContent_rfvccMonth"] : document.getElementById("MainContent_rfvccMonth");
MainContent_rfvccMonth.controltovalidate = "MainContent_ccMonth";
MainContent_rfvccMonth.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvccMonth.initialvalue = "";
var MainContent_cvMonth = document.all ? document.all["MainContent_cvMonth"] : document.getElementById("MainContent_cvMonth");
MainContent_cvMonth.controltovalidate = "MainContent_ccMonth";
MainContent_cvMonth.errormessage = "Not a valid month.<br/>";
MainContent_cvMonth.evaluationfunction = "CustomValidatorEvaluateIsValid";
MainContent_cvMonth.clientvalidationfunction = "isValidMonth";
var MainContent_rfvccYear = document.all ? document.all["MainContent_rfvccYear"] : document.getElementById("MainContent_rfvccYear");
MainContent_rfvccYear.controltovalidate = "MainContent_ccYear";
MainContent_rfvccYear.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvccYear.initialvalue = "";
var MainContent_rfvsecurityCode = document.all ? document.all["MainContent_rfvsecurityCode"] : document.getElementById("MainContent_rfvsecurityCode");
MainContent_rfvsecurityCode.controltovalidate = "MainContent_securityCode";
MainContent_rfvsecurityCode.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvsecurityCode.initialvalue = "";
var MainContent_rfvcardholdername = document.all ? document.all["MainContent_rfvcardholdername"] : document.getElementById("MainContent_rfvcardholdername");
MainContent_rfvcardholdername.controltovalidate = "MainContent_cardholdername";
MainContent_rfvcardholdername.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvcardholdername.initialvalue = "";
var MainContent_rfvaddress1 = document.all ? document.all["MainContent_rfvaddress1"] : document.getElementById("MainContent_rfvaddress1");
MainContent_rfvaddress1.controltovalidate = "MainContent_address1";
MainContent_rfvaddress1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvaddress1.initialvalue = "";
var MainContent_rfvcity = document.all ? document.all["MainContent_rfvcity"] : document.getElementById("MainContent_rfvcity");
MainContent_rfvcity.controltovalidate = "MainContent_city";
MainContent_rfvcity.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvcity.initialvalue = "";
var MainContent_rfvddlCountry = document.all ? document.all["MainContent_rfvddlCountry"] : document.getElementById("MainContent_rfvddlCountry");
MainContent_rfvddlCountry.controltovalidate = "MainContent_ddlCountry";
MainContent_rfvddlCountry.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvddlCountry.initialvalue = "-1";
var MainContent_rfvddlState = document.all ? document.all["MainContent_rfvddlState"] : document.getElementById("MainContent_rfvddlState");
MainContent_rfvddlState.controltovalidate = "MainContent_ddlState";
MainContent_rfvddlState.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvddlState.initialvalue = "-1";
var MainContent_rfvpostcode = document.all ? document.all["MainContent_rfvpostcode"] : document.getElementById("MainContent_rfvpostcode");
MainContent_rfvpostcode.controltovalidate = "MainContent_postcode";
MainContent_rfvpostcode.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
MainContent_rfvpostcode.initialvalue = "";
</script>
<script type="text/javascript">
var Page_ValidationActive = false;
if (typeof(ValidatorOnLoad) == "function") {
ValidatorOnLoad();
}
function ValidatorOnSubmit() {
if (Page_ValidationActive) {
return ValidatorCommonOnSubmit();
}
else {
return true;
}
}
Sys.Application.add_init(function() {
$create(Sys.UI._UpdateProgress, {"associatedUpdatePanelId":"MainContent_updatepanel1","displayAfter":500,"dynamicLayout":true}, null, null, $get("MainContent_updatepanel1Updateprogress1"));
});
document.getElementById('MainContent_rfvrblPaymentType').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvrblPaymentType'));
}
document.getElementById('MainContent_rfvcardnum').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvcardnum'));
}
document.getElementById('MainContent_cvCardnum').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_cvCardnum'));
}
document.getElementById('MainContent_rfvccMonth').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvccMonth'));
}
document.getElementById('MainContent_cvMonth').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_cvMonth'));
}
document.getElementById('MainContent_rfvccYear').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvccYear'));
}
document.getElementById('MainContent_rfvsecurityCode').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvsecurityCode'));
}
document.getElementById('MainContent_rfvcardholdername').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvcardholdername'));
}
document.getElementById('MainContent_rfvaddress1').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvaddress1'));
}
document.getElementById('MainContent_rfvcity').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvcity'));
}
document.getElementById('MainContent_rfvddlCountry').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvddlCountry'));
}
document.getElementById('MainContent_rfvddlState').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvddlState'));
}
document.getElementById('MainContent_rfvpostcode').dispose = function() {
Array.remove(Page_Validators, document.getElementById('MainContent_rfvpostcode'));
}
</script>
</form>
<!-- End: Footer -->
</body>
</html>
Thanks & Regards,
Abdul Aleem Mohammad
St Louis MO - USA
modified 4-May-12 12:40pm.
|
|
|
|
|