1
Answer

edit print preview

arun raju

arun raju

14y
2.4k
1

Hi to all......
I want to edit the print preview dialog which is drawn in c# for some reason
could u help me
thank u 
Answers (1)
1
Crish

Crish

NA 3.7k 76.4k 14y
hi

you can use ASP.Net in built Required field validation for validation.

Also you can validate your fields using java script.

You can also use Custom validator for your custom validation using javascript

thanks

Accepted
2
sHREYAS jOSHI

sHREYAS jOSHI

NA 4 5.3k 14y
I m using ASP.Net in built Required field validation for validation but these validation are not properly working in Mozila, so i need to write a seperate javascript function in which i want to access the ASP.Net built in Required field validation.
SO how shoud i access them ?
2
Jaish Mathews

Jaish Mathews

NA 7.3k 1.2m 14y

One more thing. javascript supports RegularExpression. You can use that too for datavalidation. Syntax is something like
var re = new RegExp(<<RegularExpression>>);
if(<<ValuseToValidate>>.match(re)) {

}

Check below link
http://www.regular-expressions.info/javascriptexample.html