Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~16.0K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

72 Posted Topics

Member Avatar for aashishn86

[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", …

Member Avatar for Prashantchavan0
0
177
Member Avatar for aashishn86

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...

Member Avatar for ivy3
0
110
Member Avatar for snetts
Member Avatar for Kshitij_fanatic
Member Avatar for aashishn86

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 …

Member Avatar for aashishn86
0
251
Member Avatar for polo_coins
Member Avatar for gaya123

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] …

Member Avatar for gaya123
0
219
Member Avatar for cmaclennan

what is the code you write to get the values from the form and store into the database ??

Member Avatar for aashishn86
0
145
Member Avatar for aashishn86

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 …

Member Avatar for aashishn86
0
617
Member Avatar for Auch
Member Avatar for aashishn86

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 …

Member Avatar for punitdam
0
170
Member Avatar for prasannakarthik

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;"> …

Member Avatar for CoSIS1
0
3K
Member Avatar for JLF09
Member Avatar for jrconstance
Member Avatar for essential
0
276
Member Avatar for aashishn86

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 …

Member Avatar for Luckychap
0
129
Member Avatar for aashishn86

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 = …

Member Avatar for aashishn86
0
111
Member Avatar for aashishn86

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...

0
52
Member Avatar for aashishn86

can anyone suggest of a place i can look for Styles for a Business Web Application... thanks...

Member Avatar for aashishn86
0
127
Member Avatar for karin21

well there are a lot of examples for that on the net.. search for creating dynamic drop down lists...

Member Avatar for aashishn86
0
433
Member Avatar for aashishn86

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...

Member Avatar for vb5prgrmr
0
462
Member Avatar for itnagusak
Member Avatar for webish
Member Avatar for kvprajapati
0
118
Member Avatar for mands

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 …

Member Avatar for essential
0
1K
Member Avatar for ayesha789

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

Member Avatar for Member #120589
0
107
Member Avatar for sarithak

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]

Member Avatar for aashishn86
0
144
Member Avatar for vizy

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...

Member Avatar for vizy
0
132
Member Avatar for plastered

[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 …

Member Avatar for plastered
0
945
Member Avatar for aashishn86

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...

Member Avatar for amr_adn
0
43
Member Avatar for lavipc

[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 …

Member Avatar for aashishn86
0
148
Member Avatar for aashishn86

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 …

Member Avatar for aashishn86
0
351
Member Avatar for aashishn86

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 …

Member Avatar for aashishn86
0
99
Member Avatar for realnsleo

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; } …

Member Avatar for essential
0
85
Member Avatar for Enrico!

[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 …

Member Avatar for Enrico!
0
196
Member Avatar for Xessa

[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 …

Member Avatar for Airshow
0
114
Member Avatar for tadisaus2
Member Avatar for deathlemon
Member Avatar for Traicey

aren't you making it mandatory for the student to login to the site before browsing through the lists ?

Member Avatar for Traicey
0
119
Member Avatar for mshravs

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...

Member Avatar for aashishn86
0
127
Member Avatar for akhtarr

[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 …

Member Avatar for TomBCullen
0
130
Member Avatar for aashishn86

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 …

Member Avatar for Airshow
0
77
Member Avatar for jzimmerman

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 !!

Member Avatar for Airshow
0
156
Member Avatar for Zerobuddy
Member Avatar for deathlemon

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...

Member Avatar for aashishn86
0
123
Member Avatar for aashishn86

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 …

Member Avatar for aashishn86
0
147
Member Avatar for nimmymeprath
Member Avatar for WilliamFieldsJr
Member Avatar for aashishn86

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....

Member Avatar for mail2saion
0
337
Member Avatar for aashishn86

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 !!

0
52
Member Avatar for pradeep.vajja

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...

Member Avatar for semoweb
0
178
Member Avatar for aashishn86

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 …

Member Avatar for aashishn86
0
116

The End.