Forum: ASP Apr 26th, 2005 |
| Replies: 8 Views: 23,820 The Excel driver is installed as part of MDAC, which should come pre-loaded on all Windows servers. |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 8 Views: 19,523 I guess I should point out that my code was the IE version, but can be modified to work in other browsers as well. Regardless of your browser you should still be able to see the layer when mousing... |
Forum: Promotion and Marketing Plans Apr 26th, 2005 |
| Replies: 8 Views: 3,820 Take a look at http://www.readydesk.com |
Forum: ASP Apr 26th, 2005 |
| Replies: 8 Views: 23,820 Your best option is always to use the built in import/export functionality that already exists and nearly all database systems. If for some odd reason this is not an option for you, you can connect... |
Forum: ASP Apr 26th, 2005 |
| Replies: 1 Views: 5,243 There are a couple of ways to do this. The first would be to set the action of the form in the pop-up to the window that opened it and have that parent window retrieve the form values. You would... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 1 Views: 3,786 The form is submitting because you are using an input type of "Submit". Change this to "button", then in the Javascript function use document.TheForm.submit() when all fields are properly validated.... |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 3 Views: 2,281 DanceInstructor was just giving you an example of how to include your code. To post your code you have to highlight it and chose the code icon (# sign) from the menu. |
Forum: JavaScript / DHTML / AJAX Apr 26th, 2005 |
| Replies: 8 Views: 19,523 This is very simple. First create a DIV with an id such as 'Tips1' and set it's visibility to hidden. Enter the text you want to be the tip. Then on the link you want the tip for set the... |
Forum: ASP Apr 26th, 2005 |
| Replies: 5 Views: 8,762 I would personally use Javascript to dynamically add new inputs, but if you must use ASP you can either pass parameters via the query string or hidden fields that tell your script to write out new... |