Forum: JavaScript / DHTML / AJAX Jul 29th, 2007 |
| Replies: 1 Views: 2,553 Im using classic ASP, and adding the AJAX's username availability check into it.
The combination's works very well.
And im wondering how to build a pop up control box in an Online Exam.
The pop up... |
Forum: JavaScript / DHTML / AJAX May 16th, 2007 |
| Replies: 9 Views: 2,334 Hi...
Well okay then, i think i'll just hide the total box if the document.form1.sum.length equal zero.
Thanks, you're magic :) |
Forum: JavaScript / DHTML / AJAX May 13th, 2007 |
| Replies: 9 Views: 2,334 Hello...
Okay the code is working, except on single inputbox situation.
I use the document.form1.sum.length to set the looping limitation.
The problem is when there is only one inputbox, the total... |
Forum: JavaScript / DHTML / AJAX May 11th, 2007 |
| Replies: 9 Views: 2,334 Hello....
I've modify the code as your instruction,
but it gives me some error code :
'document.form1.status' is null or not an object
The problem occurs after i change the code, so i... |
Forum: JavaScript / DHTML / AJAX May 10th, 2007 |
| Replies: 3 Views: 2,665 Hi, thanks for the help.
But your code need some modification to make it work.
here is the modification:
for(i=1;i<=3;i++) {
tmp = "status" + i;
tmp1 = "document.form1." + tmp ;
tmp2 =... |
Forum: JavaScript / DHTML / AJAX May 9th, 2007 |
| Replies: 3 Views: 2,665 Hello, i have a multiple checkbox that needs checking.
So i build some validation code through javascript.
I found some problem in setting the name of checkbox in a loop.
The loop should check... |
Forum: JavaScript / DHTML / AJAX May 8th, 2007 |
| Replies: 9 Views: 2,334 Hi i have a script like this :
function add()
{
c=document.form1.status1.checked;
d=document.form1.status2.checked;
if(c!=1)
document.form1.hidsum1.value=0;
else... |
Forum: ASP May 6th, 2007 |
| Replies: 7 Views: 3,879 Hai Rahul.
Finally i had to separate the delete process into another page.
But i use your suggestion on the querystring.
It works.
But i have a little problem when i modified the code :
<a... |
Forum: ASP Apr 30th, 2007 |
| Replies: 7 Views: 3,879 Yah that will do the same way to Request("act").
The problem is even i click the cancel button, the delete will still being executed.
It is easier if we can call sub procedure from javascript. ... |
Forum: ASP Apr 28th, 2007 |
| Replies: 7 Views: 3,879 Hello.
I have a problem when adding the javascript delete confirmation.
I use a page for both delete and update function.
The delete querystring is just like this :
adm_data.asp?act=del&id=6
... |
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2007 |
| Replies: 2 Views: 1,828 Well the countdown has the set timeout. When the page is refreshed, the set timeout always start from beginning. i need to get the time when the page is refreshed, so i can have the elapsed time.
... |
Forum: JavaScript / DHTML / AJAX Apr 19th, 2007 |
| Replies: 2 Views: 1,828 Hello...
I use javascript countdown timer in my page.
Each time the page is being refreshed, the countdown is restarting.
I blocked the F5 function to avoid the page being refreshed.
It works,... |
Forum: ASP Apr 12th, 2007 |
| Replies: 2 Views: 1,591 Okay...
That simply works.
Thanks dave. ;D |
Forum: ASP Apr 12th, 2007 |
| Replies: 2 Views: 1,591 Hello.
I have array that i deffered from my database.
For i=0 to 4
Point(i)=Cint(Rs("Point"))
Name(i)=Rs("Name")
rs.MoveNext
next
The result is giving me : |
Forum: ASP Apr 11th, 2007 |
| Replies: 6 Views: 4,355 Okay, well im not really familiar with cookies.
Is it different to session?
Which one is more sufficient to use?
Assume if we have ten questions, so there will be 10 cookies keys to hold the... |
Forum: JavaScript / DHTML / AJAX Apr 4th, 2007 |
| Replies: 2 Views: 3,550 Hi..
Well well... my problem solved through a single word.
i did change the media="screen" into media="all", and it works.
The page printing is exactly the same as it shown.
Thanks Rhyan.... |
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2007 |
| Replies: 2 Views: 3,550 Hello.
I have an ASP page that require printing.
The page is about showing some data from database.
I use the simple javascript printing :
javascript:window.print()
The page design use some... |
Forum: ASP Apr 2nd, 2007 |
| Replies: 6 Views: 4,355 Okay guys.
Thanks for the help, i really apreciate it.
I store the radio button value into a table.
I pass some variable through the querystring, so it doesnt matter if we move a page to another.... |
Forum: ASP Mar 31st, 2007 |
| Replies: 6 Views: 4,355 Hello...
Is there a way to retain the value of radio button during paging in ASP?
Thanks.... |
Forum: ASP Mar 29th, 2007 |
| Replies: 5 Views: 2,253 OKAY here is the code :
I think i miss-place the limitation code.
The limitation code is :
If document.theTimer.theTime.value = "01:00" {
Stop();
}
Where should i place the code? |
Forum: ASP Mar 29th, 2007 |
| Replies: 5 Views: 2,253 Okay now i can see it.
Well how can set up the limitation time.
I wrote the code :
If document.theTimer.theTime.value = "01:00" {
Stop();
}
But the clock dont even run.
Im new in... |
Forum: ASP Mar 29th, 2007 |
| Replies: 5 Views: 2,253 I'm currently working on my online quiz application. It is based on ASP.
I want to add the countdown timer in every quiz that run.
But the problem is the javascript will go freeze in my ASP, it... |