Forum: ASP.NET Sep 18th, 2009 |
| Replies: 1 Views: 444 guess you should be posting it in the ASP.NET forum |
Forum: ASP.NET Jun 23rd, 2009 |
| Replies: 6 Views: 513 use can also compare the values in the databases and the current values in the textboxes and listboxes and see if the have changed ! |
Forum: ASP.NET Jun 23rd, 2009 |
| Replies: 6 Views: 513 well, you can use a flag..
set the flag to one on click of "submit button" and otherwise let it be zero....
and onclick of each link call a function check()
which see's if the flag is 0 gives an... |
Forum: ASP.NET Jun 3rd, 2009 |
| Replies: 5 Views: 583 aren't you making it mandatory for the student to login to the site before browsing through the lists ? |
Forum: ASP.NET Jun 3rd, 2009 |
| Replies: 3 Views: 674 you can make it better by inducing a delay, incase the user decides to change his mind...
with somthing like
setTimeout("window.location='a.html'",1500);
in the IF
statement... |
Forum: ASP.NET Jun 3rd, 2009 |
| Replies: 3 Views: 674 here's the code
<html>
<head>
<script type="text/javascript" language="javascript">
function display(obj,id1,id2,id3)
{ |
Forum: ASP.NET Jun 3rd, 2009 |
| Replies: 3 Views: 674 you can use javascript....
on click of a option
redirect it using
window.location="link"
if you need more help , please post back...i'll write an example...
hope it helps... |