hi friends i am getting this error.with this i m sending my ASP code for searching the records.i have my database in Access. ... here is the code ... <html> ...
Function Printsheet() window.Print window.close End Function How do you force Landscape Printing in ASP Classic using Internet Explorer? What do I need to add...
AFAIK you can't. your window.print will cause the print messagebox to popup. The visitor will have to change the settings to landscape. Bob Filipiak A question...
Good morning everybody I'm attempting to add records to an access database from an ASP form. Unfortunately, the database was designed by someone else and...
Hi Charles and everybody Thank you for your help with this. However, it turns out that none of that was the problem. After trying all manner of solutions, one...
Set an SQLQuery...Try this: SELECT Max(unique id) FROM table_name -- "Max" finds the highest id in the database but if your system have the ability to accept...
Ok, I have programmed in PHP for years, but recently took on a client that their internal network requires ASP. (bleh, no offense). Here is what I want to do,...
I need to display on my web page the last of the news i have i my db table. Also, in the same page i need to show a list of links to all the old news with...
For retrieving the newsitem select top 1 * from news order by id desc For retrieving the links select id from news order where id not in (select top 1 id from...
Thank you for your help, actually i am also experiencing another problem, when i run the script it only display the first record. Sorry if I bother you but I...
Access i can send you my code: <%@ LANGUAGE="VBSCRIPT" %> <% Dim magazineDB Dim magazineDBPath strmagazineDBPath= Server.MapPath("magazine.mdb") %> <% set...
hi frendz am developing a website.while hosting plz help me how to transfer a database from client side to netserver and make it run on server Its urgent . ...
... to take texts, images, <td> background colors, in a HTML template, using ASP ? Need I to use DB or Session Object ? Since now, thanks for all. Claudio -- ...
No need for DB...all you have to do for texts and background colors is .CSS...In terms of images just put them in a folder where you can call them in your code...
Probably I was not clear... may fault... I need to create starting from HTML templates another distinct HTML pages, controlling it with ASP codes... I thought:...
Ohh i see...there's an easy way if your not getting your design to a DB...use an if statement in the server-side and declare the design in HTML...the DB only...
can anyone help me display a tree menu just like the attached image here, since the table here is dynamically created using telscript.js which is also attached...
I've been trying to debug a page and have ran into a snag. I'm pretty sure the SQL statement is correct but it isn't actually inserting the data into the data...
I have been thinking about using MSDE for my Web-based document-production system. However, I've done some quick research, and based on what I know so far, it...
MSDE is basically SQL Server without the client tools etc... and if you're using it as a back-end for a web-based system, then the only machine accessing the...
That is great news -- thanks, Dan. I will research this further. - Cynthia Leslie ... From: Dan Powderhill To: AspClassicAnyQuestionIsOk@yahoogroups.com Sent:...
I can't seem to successfully add a radio button to this code. The ONE works great but if I try to duplicate it, it wont add to database. Here is code: <% dim...
Hi again everybody I was testing this asp to database link I'm working on and found that I was getting an EOF/BOF error, which it turned out was being caused ...
hi everybody...just a question here... if in ASP Classic we can use include file and include virtual does ASP.Net could do the same.. thank you very much.. a...