Showing results 1 to 22 of 22
Search took 0.01 seconds; generated 5 minute(s) ago.
Posts Made By: enggars
Forum: JavaScript / DHTML / AJAX Jul 29th, 2007
Replies: 1
Views: 1,928
Posted By enggars
Question Online Exam's Pop Up Control Box

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: 1,907
Posted By enggars
Re: Help using looping in JS

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: 1,907
Posted By enggars
Help Re: Help using looping in JS

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 is...
Forum: JavaScript / DHTML / AJAX May 11th, 2007
Replies: 9
Views: 1,907
Posted By enggars
Re: Help using looping in JS

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 believe...
Forum: JavaScript / DHTML / AJAX May 10th, 2007
Replies: 3
Views: 1,915
Posted By enggars
Solution Re: Little confusion in multiple checkboxes

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: 1,915
Posted By enggars
Help Little confusion in multiple checkboxes

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 three...
Forum: JavaScript / DHTML / AJAX May 8th, 2007
Replies: 9
Views: 1,907
Posted By enggars
Help Help using looping in JS

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,095
Posted By enggars
Re: Problem when adding delete confirmation

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 href="#"...
Forum: ASP Apr 30th, 2007
Replies: 7
Views: 3,095
Posted By enggars
Help Re: Problem when adding delete confirmation

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.
Such...
Forum: ASP Apr 28th, 2007
Replies: 7
Views: 3,095
Posted By enggars
Help Problem when adding delete confirmation

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

And...
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2007
Replies: 2
Views: 1,308
Posted By enggars
Re: Need To Save Timer In Cookies

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,308
Posted By enggars
Help Need To Save Timer In Cookies

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, but it...
Forum: ASP Apr 12th, 2007
Replies: 2
Views: 1,262
Posted By enggars
Re: joining array, but still read as number

Okay...
That simply works.

Thanks dave. ;D
Forum: ASP Apr 12th, 2007
Replies: 2
Views: 1,262
Posted By enggars
Help joining array, but still read as number

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: 3,299
Posted By enggars
Re: Retaining radio button value during paging

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: 2,571
Posted By enggars
Re: Javascript printing problems

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: 2,571
Posted By enggars
Javascript printing problems

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 css...
Forum: ASP Apr 2nd, 2007
Replies: 6
Views: 3,299
Posted By enggars
Solution Re: Retaining radio button value during paging

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. The...
Forum: ASP Mar 31st, 2007
Replies: 6
Views: 3,299
Posted By enggars
Question Retaining radio button value during paging

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: 1,801
Posted By enggars
Re: Generating clientside javascript

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: 1,801
Posted By enggars
Re: Generating clientside javascript

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 Java, so...
Forum: ASP Mar 29th, 2007
Replies: 5
Views: 1,801
Posted By enggars
Help Generating clientside javascript

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 only...
Showing results 1 to 22 of 22

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 12:46 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC