Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for enggars

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 can show which numbers that hasn't been answered yet. Many thanks for the helps. …

Member Avatar for yildosh
0
104
Member Avatar for enggars

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 the update goes this way : `adm_data.asp?act=upd&id=6` I use this following code to processing delete: If Request("act")="del" Then Call …

Member Avatar for katarey
0
175
Member Avatar for enggars

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 document.form1.hidsum1.value=document.form1.sum1.value if(d!=1) document.form1.hidsum2.value=0; else document.form1.hidsum2.value=document.form1.sum2.value a=document.form1.hidsum1.value; b=document.form1.hidsum2.value; var e = parseInt(a)+parseInt(b); document.form1.total.value=e; } And it works though. But i want to use looping to simplify the code. Anybody can helps? i have no idea …

Member Avatar for MidiMagic
0
134
Member Avatar for enggars

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 checkboxes. Which are [B]status1[/B], [B]status2[/B], and [B]status3[/B]. You might want to see my code below. …

Member Avatar for MidiMagic
0
122
Member Avatar for enggars

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 doesnt block the browser's refresh button. So what i gonna do is unblocked the F5, …

Member Avatar for enggars
0
2K
Member Avatar for enggars

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 : Point(0) Point(1) Point(2) Point(3) Name(0) Name(1) Name(2) Name(3) I would like to built a chart from it. The chart goes this way: [B]ShowChart[/B] Array(Point(0),Point(1),Point(2),Point(3),Point(4)), Array(Name(0),Name(1),Name(2),Name(3),Name(4)) That …

Member Avatar for enggars
0
123
Member Avatar for enggars

Hello... Is there a way to retain the value of radio button during paging in ASP? Thanks....

Member Avatar for gil857
0
138
Member Avatar for enggars

Hello. I have an ASP page that require printing. The page is about showing some data from database. I use the simple javascript printing : [B]javascript:window.print() [/B]The page design use some css templates. Well it does print. But it only prints the images and the texts. The print out seems …

Member Avatar for enggars
0
91
Member Avatar for enggars

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 run each time i refreshed the page. Some suggest me to …

Member Avatar for davidcairns
0
153