Does anyone know anything about embedding fonts in a page for visitors that are using Mozilla or browsers other than Internet Explorer. What I read on the web...
Assalamualaikum wr.wb, yesterday i migrate my webserver from win 2k advance server (using iis 5) to win 2k+3 server (using iis 6). my web is using asp (not ...
-=[[Galang]]=-
penakluk85@...
Aug 2, 2004 4:14 pm
9549
I don't think IIS 6 supports ASP Classic by default. I believe it is a setting you have to turn on to run Classic ASP with 2003. I can't tell you where...
Andy is correct. This is a security feature in IIS6 that disables classic ASP. Google it. I can't recall how to re-enable it, but it was simple. Mark Andy...
Try going into the windows 2003 setup (in add/remove programs) and go into the details of "Application Server", somewhere in there you can add 'classic asp'...
Hii I am a beginer and have this problem mentioned below Some body has written this code for a drop down menu and i can't figure out how to add the links to...
Hi, I cant open a single ASP file either in Crimson editor, TextPad or even in Notepad. If I try to open one the program stucks. Please help to eradicate this....
Hi, Looks like it's an OS problem, maybe a virus. HTH Chamindu **** DISCLAIMER ***** This e-mail and any attachments thereto are intended for the sole use of ...
I tried Wrapping code given by Mark and I could not get it. I have refined the code. I have created a component which returns a recordset. (Select * from ...
Hi, I have opened a recordset with "SELECT * from Table" There are 56 fields in this table. While accessing the values of all the fields in the recordset by...
I've been using Crimson editor to write ASP files for quite sometime. But now I find problems opening the saved files. If I try to open any ASP file with...
Hi Heron, ... How are you attempting to open the files? ie; File>Open or double-clicking or dragging the file(s) into an open instance of the application... If...
Hi Roslyn, ... Not all field types respect the Value property. Do you have a create table sample for us that demonstrates the types of each of the fields? Some...
Hi Yim, ... They're never as big as they look. :) ... DomainDLX does: http://domaindlx.com/ They don't have 100% availability, but they're fine for learning...
Hope this wld help u http://www.google.com/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=win+xp+h ome+iis ILyas ... From: John Moss [mailto:jlmoss@...]...
Hi there.... I wonder if anyone can help with this tricky problem.... I have 3 list boxes which are populated by recordsets. However, the records added to the...
... Have a separate form outside of the current form on your page. <form name="Second_List_Form" method="post" action="this page"> <input type="hidden"...
To retrieve the recs from the db, the form needs to be posted. Infact, I have tried something of this kind, which wasn't successful. If u want to use the...
Hi everyone, I managed to get and display images from database to an ASP page but I want it to display on thumbnail on a 3 X 3 format, any suggestions/ideas...
If you are using Windows XP Home Edition, you should be able to install PWS (Personal Web Server) through Add/Remove Programs. PWS supports ASP. Soren yclee82...
Is there a way to do something like this SQL statement with an array? SELECT * WHEN ID IN (1,2,3,4) I want to have an array of ID's, and if a variable is in...
... I'm pretty certain that you can do that: SELECT * FROM table WHERE ID IN (1,2,3,4) Should do the trick, I think. You pass the array in as a comma-delimited...
Paul, ... I must not have explained what I'm doing correctly. I'll know the test value, but I won't know the values in the array because they'll be built...
If I understand you right, you can do: sSQL = "SELECT [name],[your],[columns] FROM [theTable] WHERE ID IN (" & Join(YourArray,",") & ")" Ray at work...