- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
72 Posted Topics
[code] var weekend = [0,6]; var weekendColor = "#e0e0e0"; var fontface = "Verdana"; var fontsize = 1; var gNow = new Date(); var ggWinCal; isNav = (navigator.appName.indexOf("Netscape") != -1) ? true : false; isIE = (navigator.appName.indexOf("Microsoft") != -1) ? true : false; Calendar.Months = ["January", "February", "March", "April", "May", "June", …
is there a way by which i can generate a excel report in asp and create a chart corresponding to it using asp as well...
guess you should be posting it in the [B][COLOR="Red"]ASP.NET[/COLOR][/B] forum
hi all i have been using ASP... I basically wanna learn PHP and Drupal now.... I tried installing WAMPSERVER ..... I have got it installed , but i can't make it run... i already have IIS installed on my computer.. i changed this in the httpd.conf file [COLOR="Red"]Listen 8080 ServerName …
hi essential.......... doesn't this work in IE 6 ?? didn't work for me... :(
you could use javascript for it... u can have a hidden field who's value changes on the button click.. and then you pass this value to the next page and depending upon the value passed write your logic.. this should be your html [code] <input type='hidden' id='thisone' name='thisone' value='0'> [/code] …
what is the code you write to get the values from the form and store into the database ??
I use this function to add rows dynamically in a table [code] function addRow() { var tbl = document.getElementById('applications'); var lastRow = tbl.rows.length; // if there's no header row in the table, then iteration = lastRow + 1 var iteration = lastRow; var row = tbl.insertRow(lastRow); // right cell var …
hiii i am using the following functions in javascript to dynamically add and remove rows from a table... [code] function addRow() { //add a row to the rows collection and get a reference to the newly added row var newRow = document.all("applications").insertRow(); //add 3 cells (<td>) to the new row …
this is what you are looking for , i guess [code] <html> <head> </head> <script type="text/javascript"> function showdv(obj,id1,id2) { txt=obj.options[obj.selectedIndex].text; document.getElementById("box").style.display='none'; if(txt.match(id1)) { document.getElementById("box").style.display='block'; document.getElementById("boxx").value=txt } if(txt.match(id2)) { document.getElementById("box").style.display='block'; document.getElementById("boxx").value=txt } } </script> <body> <thead> <select id="opts" onchange="showdv(this,'one','two');" > <option value="">select</option> <option value="one">one</option> <option value="two">two</option> </select> </thead> <div id="box" style="display:none;"> …
i guess you can't visit the Microsoft site as well ?
Hi JR.. Can you share the CSS for your form.... It looks pretty good.... thanks...
hiii i have a field called DRIVE ACCESS under it user enters PATH DATE what i want is that when user click on + two new boxes open which allow him to enter the details for second DRIVE basically i want to enter text boxes dynamically using javascript.... any ideas …
i am using this function to add rows dynamically [code] function addRow() { var tbl = document.getElementById('applications'); var lastRow = tbl.rows.length; // if there's no header row in the table, then iteration = lastRow + 1 var iteration = lastRow; var row = tbl.insertRow(lastRow); // left cell var cellLeft = …
can someone tell me how to validate the form, in a way where the text comes below the field to be validated... unlike alerts please give an example for a textbox and a dropdown list... if possible... thanks...
can anyone suggest of a place i can look for Styles for a Business Web Application... thanks...
well there are a lot of examples for that on the net.. search for creating dynamic drop down lists...
i am creating a VB application.. is there a way i can ensure a user can install it only on one system and not distribute it ? something like a license ? thanks...
are you using asp or any other server side scripting language ?
hii gud to see you here.. where are you from.... and what do ya do ?
hi this code would display it after 5 seconds... you can style it with CSS and modify according to your need.. [code] <html> <head> <script type="text/javascript"> function timestrt() { setTimeout("dispa()",5000); } function dispa() { document.getElementById("cans").innerHTML="the correct answer is a"; } </script> <body onload="timestrt();"> <p> please chose the correct option</p> <input …
well i did the same in asp used a script that was available on net if you want i can tell you..but then its in asp
this is a basic code that changes the image wen mouse is moved over it or moved out of it .. [code] <html> <head> <script type="text/javascript"> function cpic() { document.getElementById("imagee").src='b.jpg' } function cpic2() { document.getElementById("imagee").src='a.jpg' } </script> </head> <body> <img src="a.jpg" id="imagee" onmouseover="cpic();" onmouseout="cpic2();"> </body> </html> [/code]
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 alert otherwise opens the link...
[QUOTE=plastered;884006]Hi, I had to recently uninstall my AV and when I try to reinstall it, it does install but when I click on the icon nothing happens. In addition to that, my internet service is gone into super slow motion too. Taking quite a while to open pages etc. I …
hii whenever i try to run IE 8 i get the following error An unhandled win32 exception occured in iexplore.exe[2680] and it opens the visual studio debugger I am using windows xp professional. thanks...
[QUOTE]Hi Everybody . . I am a new member and I am looking for somebody who can help me... I'm building a new website (HTML) and customers all over Orange County will be my target. I'm looking for a code who'll shows all the cities in Orange County, that looks …
hii till yesterday i couldn't open any antivirus sites on my system.. then i came across this post [url]http://www.geekstogo.com/forum/cannot-open...So-t228197.html[/url] i followed the steps and ran dr web scanner.. it found a few items and either quarantined them or deleted them.. after that i was able to open the sites. but …
hii!! i am making a form in which the user fills in the fields and finally submits the form, which is then saved in the database i use asp and javascript for validations. the user can see, all the enteries as a list in another page. Now, i have to …
hiii i have got no idea about reg exp but this code can help you achieve the same thing [code] function charOnly() { if( (event.keyCode >=65 && event.keyCode <= 90 ) || (event.keyCode >=97 && event.keyCode <= 122) || (event.keyCode == 47 )) { event.returnValue=true; } else { event.returnValue=false; } …
[code] <html> <head> <script type="text/javascript"> function getvalue() { one=document.getElementById("cellone").innerHTML document.getElementById("box1").value=one; } </script> <body> <form id="form1"> <table > <tr> <td id="cellone">hello</td> </td> </tr> </table> <input type="text" id="box1" onclick="getvalue();"> </body> </form> </html> [/code] with this you can capture the value on clicking on the text box.. you could change the event according …
[QUOTE] I got the contents of textarea from the database and i want to check if the contents are changed or not. if it is changed at last. i want to enable my button. [/QUOTE] guess for that you will have to check the value of the text box first …
can't "view source" be used for it ?
is this solved ?
aren't you making it mandatory for the student to login to the site before browsing through the lists ?
you can use javascript.... on click of a option redirect it using [code] window.location="link" [/code] if you need more help , please post back...i'll write an example... hope it helps...
[QUOTE=akhtarr;817087]Okay what I've got is a form and an array with a list of courses. The array populates a drop down list, I also have on the form a cost text box. What I would like is when the user chooses a course the cost field to automatically bring the …
hii my drop down box contains very long names... if i increase the length of the box it doesn't looks good so i was wondering if i could somehow show the complete name inthe tooltip or title when the value is selected in the drop down list.... i am picking …
hiii i ain't sure... but try changing the variable name in the second from selected to something else.... please post back if it helps or not !!
hiii instead of [code] if (document.otheragency.value =="") [/code] use [code] if(form.otheragency.value=="") [/code] do this at all the places.... n post back if it works...
i need to write a function to remove consecutive slashses from a string i wrote this [code] for( i=0; i!=b; ) { var slashone = strname.indexOf('/',i+1) i=slashone var slashtwo = strname.indexOf('/',i+1) i=slashtwo //alert("index of slash one" + slashone) //alert("index of slash two" + slashtwo) if( slashone == (slashtwo-1)) { alert("Remove …
Hi!! i need to write a function that counts the number of names seperated by a '/' for example if i write aashish/ankush in a field the number returned should be 2 thanks....
Hi !!! i need to make an application , in which i can open a excel file lying on the server update it and save. any ideas please !!
there are lots of resources available on the internet.. let us know, what all do you presently know ? and please post in the appropriate forum...
hii!!! i have two forms, the edit and the add transaction form.. In the add transaction form, the user has to attatch a file for which i use <input type=file id="path" > and the path is saved in the database.. now when the user edits the form, i cannot get …
The End.