Click here to Skip to main content
15,886,578 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 19:38
Flavia A5-Nov-09 19:38 
AnswerRe: is the some way we can have 2 link button in a grdview? Pin
sashidhar5-Nov-09 20:29
sashidhar5-Nov-09 20:29 
QuestionCustom control : getting Rowcount 0 on button event of the control. Pin
Imran Khan Pathan5-Nov-09 19:35
Imran Khan Pathan5-Nov-09 19:35 
QuestionGoogle Maps, Street View API Pin
pujafaldu5-Nov-09 19:24
pujafaldu5-Nov-09 19:24 
AnswerRe: Google Maps, Street View API Pin
sashidhar5-Nov-09 20:36
sashidhar5-Nov-09 20:36 
GeneralRe: Google Maps, Street View API Pin
pujafaldu5-Nov-09 22:41
pujafaldu5-Nov-09 22:41 
GeneralRe: Google Maps, Street View API Pin
sashidhar5-Nov-09 22:52
sashidhar5-Nov-09 22:52 
QuestionObject expected Error .........please help me Pin
maheshkmr5-Nov-09 19:21
maheshkmr5-Nov-09 19: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 20:10
Nishant Singh5-Nov-09 20:10 
Questionhow add a plugin to browser Pin
santhosh-padamatinti5-Nov-09 18:58
santhosh-padamatinti5-Nov-09 18:58 
Questionuser details after login Pin
rahuuul175-Nov-09 18:27
rahuuul175-Nov-09 18:27 
AnswerRe: user details after login Pin
rahuuul175-Nov-09 18:28
rahuuul175-Nov-09 18:28 
GeneralRe: user details after login Pin
Gamzun5-Nov-09 19:00
Gamzun5-Nov-09 19:00 
AnswerRe: user details after login Pin
Christian Graus5-Nov-09 18:54
protectorChristian Graus5-Nov-09 18:54 
GeneralRe: user details after login Pin
rahuuul175-Nov-09 18:57
rahuuul175-Nov-09 18:57 
GeneralRe: user details after login Pin
Christian Graus5-Nov-09 20:13
protectorChristian Graus5-Nov-09 20:13 
GeneralRe: user details after login Pin
Gamzun5-Nov-09 23:18
Gamzun5-Nov-09 23:18 
Questionhow to implement the "remember me" component in the asp web page Pin
Amit Spadez5-Nov-09 17:37
professionalAmit Spadez5-Nov-09 17:37 
AnswerRe: how to implement the "remember me" component in the asp web page Pin
tejesh1235-Nov-09 17:57
tejesh1235-Nov-09 17:57 
GeneralRe: how to implement the "remember me" component in the asp web page Pin
Amit Spadez5-Nov-09 18:00
professionalAmit Spadez5-Nov-09 18:00 
GeneralRe: how to implement the "remember me" component in the asp web page Pin
Gamzun5-Nov-09 18:05
Gamzun5-Nov-09 18:05 
GeneralRe: how to implement the "remember me" component in the asp web page Pin
tejesh1235-Nov-09 18:21
tejesh1235-Nov-09 18:21 
AnswerRe: how to implement the "remember me" component in the asp web page Pin
Gamzun5-Nov-09 18:02
Gamzun5-Nov-09 18:02 
QuestionGetting local printers on client Pin
dptalt5-Nov-09 8:18
dptalt5-Nov-09 8:18 
AnswerRe: Getting local printers on client Pin
Abhishek Sur5-Nov-09 9:17
professionalAbhishek Sur5-Nov-09 9: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.