Click here to Skip to main content
15,792,422 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionis the some way we can have 2 link button in a grdview? Pin
Flavia A5-Nov-09 20:38
Flavia A5-Nov-09 20:38 
AnswerRe: is the some way we can have 2 link button in a grdview? Pin
sashidhar5-Nov-09 21:29
sashidhar5-Nov-09 21:29 
QuestionCustom control : getting Rowcount 0 on button event of the control. Pin
Imran Khan Pathan5-Nov-09 20:35
Imran Khan Pathan5-Nov-09 20:35 
QuestionGoogle Maps, Street View API Pin
pujafaldu5-Nov-09 20:24
pujafaldu5-Nov-09 20:24 
AnswerRe: Google Maps, Street View API Pin
sashidhar5-Nov-09 21:36
sashidhar5-Nov-09 21:36 
GeneralRe: Google Maps, Street View API Pin
pujafaldu5-Nov-09 23:41
pujafaldu5-Nov-09 23:41 
GeneralRe: Google Maps, Street View API Pin
sashidhar5-Nov-09 23:52
sashidhar5-Nov-09 23:52 
QuestionObject expected Error .........please help me Pin
maheshkmr5-Nov-09 20:21
maheshkmr5-Nov-09 20:21 
<html>
<head><title>SALARY DETAILS</title>
</head>
<body>
<form name=frm action="sal.aspx">
Emplyee Name:<input type=text name=txtname><br>
HRA :<input type=text name=txthra><br>
DA :<input type=text name=txtda><br>
TA :<input type=text name=txtta><br>
PF :<input type=text name=txtpf><br>
Salary :<input type=text name=txtpf><br>

<input type=button name=btn value=Calculte onclick=checks()>

<script language="javascript">

function checks()
{
if(document.frm.txthra.value>100)
{
alert("HRA CANT Be More Than 100");
document.frm.txthra.focus();
}
else if(document.frm.txtda.value>100)
{
alert("DA CANT Be More Than 100");
document.frm.txtda.focus();

}

else if(document.frm.txtta.value>100)
{
alert("TA CANT Be More Than 100");
document.frm.txtta.focus();
}

else if(document.frm.txtpf.value>100)

{
alert("PF CANT Be More Than 100");
document.frm.txtpf.focus();

}

else
{
document.frm.submit();
}
}
</scrip></form>
</body>
</html>





getting error at <input type=button name=btn value=Calculte onclick=checks()>
AnswerRe: Object expected Error .........please help me Pin
Nishant Singh5-Nov-09 21:10
Nishant Singh5-Nov-09 21:10 
Questionhow add a plugin to browser Pin
santhosh-padamatinti5-Nov-09 19:58
santhosh-padamatinti5-Nov-09 19:58 
Questionuser details after login Pin
rahuuul175-Nov-09 19:27
rahuuul175-Nov-09 19:27 
AnswerRe: user details after login Pin
rahuuul175-Nov-09 19:28
rahuuul175-Nov-09 19:28 
GeneralRe: user details after login Pin
Gamzun5-Nov-09 20:00
Gamzun5-Nov-09 20:00 
AnswerRe: user details after login Pin
Christian Graus5-Nov-09 19:54
protectorChristian Graus5-Nov-09 19:54 
GeneralRe: user details after login Pin
rahuuul175-Nov-09 19:57
rahuuul175-Nov-09 19:57 
GeneralRe: user details after login Pin
Christian Graus5-Nov-09 21:13
protectorChristian Graus5-Nov-09 21:13 
GeneralRe: user details after login Pin
Gamzun6-Nov-09 0:18
Gamzun6-Nov-09 0:18 
Questionhow to implement the "remember me" component in the asp web page Pin
Amit Spadez5-Nov-09 18:37
professionalAmit Spadez5-Nov-09 18:37 
AnswerRe: how to implement the "remember me" component in the asp web page Pin
tejesh1235-Nov-09 18:57
tejesh1235-Nov-09 18:57 
GeneralRe: how to implement the "remember me" component in the asp web page Pin
Amit Spadez5-Nov-09 19:00
professionalAmit Spadez5-Nov-09 19:00 
GeneralRe: how to implement the "remember me" component in the asp web page Pin
Gamzun5-Nov-09 19:05
Gamzun5-Nov-09 19:05 
GeneralRe: how to implement the "remember me" component in the asp web page Pin
tejesh1235-Nov-09 19:21
tejesh1235-Nov-09 19:21 
AnswerRe: how to implement the "remember me" component in the asp web page Pin
Gamzun5-Nov-09 19:02
Gamzun5-Nov-09 19:02 
QuestionGetting local printers on client Pin
dptalt5-Nov-09 9:18
dptalt5-Nov-09 9:18 
AnswerRe: Getting local printers on client Pin
Abhishek Sur5-Nov-09 10:17
professionalAbhishek Sur5-Nov-09 10:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.