Click here to Skip to main content
15,922,894 members

Comments by aruna_0990 (Top 7 by date)

aruna_0990 27-Apr-11 10:02am View    
thanx it worked when i used 587..i increased the timeout seconds
aruna_0990 27-Apr-11 1:24am View    
so do i need to do some changes in the firewall or in the code???
can u suggest something...
thanx...
aruna_0990 27-Apr-11 1:22am View    
hey i read the article but it doesn't solve my problem... thanx anyways
aruna_0990 10-Feb-11 21:16pm View    
but in this case it is posted back to the same page(i.e page1.aspx) and doesn't go to page2.aspx even if there is an entry..

can u suggest me something...
aruna_0990 10-Feb-11 21:14pm View    
hey..
actually i was trying that...
now on the click event of calculate button i have written this code:

<script type ="text/javascript" >
function validate()
{
if (document .getElementById ('textbox1').value.length==0)
{
document .getElementById ('label1').innerText ='please enter a value';
document .getElementById ('textbox1').focus();

return false;


}
else
{
return true ;

}
}