01-28-2009, 03:24 PM
Hi sudhir,
In the page where the date appears in the format of "mm/dd/yyyy", get this value in a variable and use split function
eg:
Now, you will be able to check these three values with u'r previous page.
In the page where the date appears in the format of "mm/dd/yyyy", get this value in a variable and use split function
eg:
Code:
vVar = Split("01/10/2009", "/")
now u will have vVar(0) = "01"
vVar(1) = "10"
vVar(2) = "2009"
Now, you will be able to check these three values with u'r previous page.