RequiredFieldValidator--write code in javascript
Answers were Sorted based on User's Feedback
Answer / srinivasan
function validate()
{
var Name = document.getElementById("txtName");
if( Name.value=="")
{
alert("Please enter the Name");
return false;
}
}
button OnClick() we hav to cal this function
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / amit das
function validate()
{
if(document.getElementById("NameId").value == null)
alert("Please enter the name");
document.getElementById("NameId").focus();
return false;
}
or
function validate()
{
with(document.formname)
{
txtboxid.value == ""
alert("Please enter value");
txtboxid.focus();
return false;
}
}
or we can use
document.form.txtboxid.value
instead of
document.getElementById("NameId").value
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / gangadhar
function validate()
{
if(document.getElementById("NameId").value == null)
alert("Please enter the name");
document.getElementById("NameId").focus();
return false;
}
in button OnClick() we hav to cal this function
Is This Answer Correct ? | 6 Yes | 3 No |
write a sample code make use of xmltext writer
What is role manager work in web.config? how to restrict perticular pages from the users using the role manager?
Can you please anyone explain in detailed Webservices concepts in Asp.net?
What are the steps to follow to host a web application on a web server?
How tooltip is set through code-behind in ASP.NET?
What is xaml? Are xaml file compiled or built on runtime?
What does aspcompat="true" mean?
If you are using components in your application, how can you handle exceptions raised in a component?
What are the various types of authentication?
what if we delete web.config or machine.config? will a website work if we delete webconfig....or if we delete machine config?
Can we make a class with class with same;suppose public class abc { public class abc { } }
How do u optimize a query in asp.net?