Search the web
Sign In
New User? Sign Up
AspClassicAnyQuestionIsOk
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8572 - 8601 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8572
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...
qa_director_2003
qa_director_...
Offline Send Email
Jun 7, 2009
5:55 am
8573
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...
Cheri Harder
cherime2
Offline Send Email
Jun 7, 2009
2:01 pm
8574
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...
mallard
ttmallard
Offline Send Email
Jun 7, 2009
2:33 pm
8575
Hi All, This is my first posting, so here it is. I am struggling to convert this PHP code into ASP classic code + VBScript : <?php $xml = "<?xml...
ari_rushan79
Online Now Send Email
Jun 16, 2009
3:42 am
8576
Hello, I am geting the error Type mismatch: 'OpenDB' Below is the code, global.asa <SCRIPT LANGUAGE=VBScript RUNAT=Server> Sub Application_OnStart ...
shivam0101
Offline Send Email
Jun 16, 2009
3:42 am
8577
Exactly what are you trying to do? Looks more like an xml message then something you want to upload?...
mischa kroon
aemca_san
Offline Send Email
Jun 16, 2009
7:47 am
8578
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: ...
mischa kroon
aemca_san
Offline Send Email
Jun 16, 2009
7:54 am
8579
Sorry, I am trying to post an xml message, not upload. Thanks, Ari...
Ari R. Fikri
ari_rushan79
Online Now Send Email
Jun 16, 2009
8:20 am
8580
Hi, you forgot the "return" statement il OpenDB() function, you need to add this to your function : set OpenDB = dbConn Function OpenDB() Set dbConn =...
TALBI Mohamed Ettaki
talbi_med_ett
Offline Send Email
Jun 16, 2009
9:57 am
8581
Hi, Try "winhttp.winhttprequest.5.1" object, i use it very often and works fine with both html and xml posts. Regards...
TALBI Mohamed Ettaki
talbi_med_ett
Offline Send Email
Jun 16, 2009
9:59 am
8582
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...
Darth Mikey D
darth_mikeyd
Online Now Send Email
Jun 16, 2009
9:14 pm
8583
Thanks Talbi, I will try. Rgds, Ari...
Ari R. Fikri
ari_rushan79
Online Now Send Email
Jun 17, 2009
9:13 am
8584
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. ...
mccurdy_czz_rob
Offline Send Email
Jul 23, 2009
8:14 pm
8585
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...
Hunain
hunain11
Offline Send Email
Jul 24, 2009
7:03 pm
8586
Is it possible to use ASP and Flash MX together to display multiple records from a MS Access database on a Flash Page? Thanks Rob...
mccurdy_czz_rob
Offline Send Email
Jul 28, 2009
4:22 pm
8587
... 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...
C Harder
cherime2
Offline Send Email
Jul 31, 2009
5:49 pm
8588
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...
Tammy Barbee
tgmiller5
Offline Send Email
Jul 31, 2009
6:07 pm
8589
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...
mallard
ttmallard
Offline Send Email
Jul 31, 2009
6:11 pm
8590
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...
Mohit Agarwal
staywithmohit
Offline Send Email
Aug 2, 2009
6:55 pm
8591
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...
Tammy Barbee
tgmiller5
Offline Send Email
Aug 2, 2009
7:27 pm
8592
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...
Tammy Barbee
tgmiller5
Offline Send Email
Aug 3, 2009
5:47 pm
8593
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...
mallard
ttmallard
Offline Send Email
Aug 3, 2009
7:33 pm
8594
I do not have varchar(max) on sql server 2000.   Tammy ... From: mallard <mallard@...> Subject: Re: [AspClassicAnyQuestionIsOk] Still same ASP...
Tammy Barbee
tgmiller5
Offline Send Email
Aug 3, 2009
7:47 pm
8595
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...
mallard
ttmallard
Offline Send Email
Aug 3, 2009
7:58 pm
8596
OLEDB demands memo fields be last. Select field1, field2, Q13 from ... would work Select field1, Q13, field2, from ... would NOT work ...
Charles Carroll
charlesmarkc...
Online Now Send Email
Aug 3, 2009
10:52 pm
8597
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@...>...
Tammy Barbee
tgmiller5
Offline Send Email
Aug 4, 2009
10:05 am
8598
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...
mallard
ttmallard
Offline Send Email
Aug 4, 2009
10:42 am
8599
I am so sorry for being such a pest but I tried the following:     <% Dim hello1 hello1 = rs.fields("Q1") Response.write(hello1) %>   My datatype in the...
Tammy Barbee
tgmiller5
Offline Send Email
Aug 4, 2009
2:26 pm
8600
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...
Eric Kestler
erickestler
Offline Send Email
Aug 4, 2009
2:46 pm
8601
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...
Mark E
meckeard2000
Offline Send Email
Aug 10, 2009
6:54 pm
Messages 8572 - 8601 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help