All, I have been a very silent member of this group for a while now. I joined this group when I was developing an informal Access database with access on a...
Well, now. I have a large extranet application running on SQL Server, using Classic ASP, and it works "just fine" - but I don't use Ajax and have not...
Hmmm, classic asp vs .net(past v1.1) is like manually authoring DTD's for xml instead of using xml software as an analogy. No contest ... it's a whole...
Always try and use getrows for data retreival: http://www.learnasp.com/freebook/asp/whygetrows.aspx For your code to work you might want to uncomment this: ...
Hi, you forgot the "return" statement il OpenDB() function, you need to add this to your function : set OpenDB = dbConn Function OpenDB() Set dbConn =...
Had to put this on the back burner for a bit, as I had other things I had to finish first. Thanks for responding. Do you mean that I have to program the...
Hello everyone: I'm just wondering if it is possible to use ASP and Flash MX together to display multiple records from a MS Access database on a Flash Page. ...
Microsoft Agent Animations for Genie Character Microsoft Agent Animations for Genie Character(How can i use in asp classic) and can impliment ddl file in asp...
... Most definitely! There's a good article here (and likely tons of tutorials out there in Google-land) http://www.15seconds.com/Issue/010605.htm I don't...
In my SQL Server 2000 database, I wanted to have some of my datatypes as text because the text is over 8000 characters. However, when I go to the form that I...
Did you try varchar(max) ? Try that, think that works for what you want. tom mallard .net web apps - project mgmt consumer product design ... From: "Tammy...
Guys i think varchar(max) works in SQL Server 2005.... but you can try to ntext datatype......might be it will fullfil ur requirement. ... [Non-text portions...
I run into another problem. I changed the datatypes in my SQL Server 2000 database to text. However, all my data went with no problem, but when I look at the...
I run into another problem. I changed the datatypes in my SQL Server 2000 database to text. However, all my data went in with no problem, but when I look at...
getchunk() has to do with the delivery of the data (use it, better speed), so isn't really tied to the datatype, varchar() or text, what you're having trouble...
Hmmm, you have trailing spaces in this: <td colspan="4" class= "text"><%=rs. fields("Q13" )%></td> That could be it, but using text is OK so the data should...
Charles, Thank you as I have a whole lot of memo fields. I have at least 20 or more. Will this still work? Thanks, ... From: Charles Carroll <911@...>...
As long as they all are at the end it should be OK, whether that's in the same table or in separate ones. tom mallard .net web apps - project mgmt consumer...
When you retrieve TEXT or NTEXT fields, try using " substring(Q1,1,*length*) as Q1 " (w/o quotes)...I've had better luck with that type of query. You can...
I have a very old classic ASP upload page that works for me but hardly any one else within my company. No errors are generated but their documents don't get...