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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 8104 - 8133 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8104
Hai All, how can I copy a file(may be word, Excel, paint...) from local disk to server using ASP I have a control "file" on my form <input type="file"...
friendly_seetha
Offline Send Email
Nov 3, 2007
11:50 am
8105
SmartUpload is free. FreeAspUpload as well. ASP cannot handle the upload feature with out a FREE solution or paid one (softArtisans Fileup, Presists ASPUpload)...
Charles Carroll
charlesmarkc...
Offline Send Email
Nov 5, 2007
2:04 am
8106
Dear friends, I want print the files name from my web folder to my web page. I user the following codes but not working in local host and web site also. can...
Your Friend
rose_child007
Offline Send Email
Nov 9, 2007
1:26 pm
8107
Hi all, when i try to open report from my asp application, some time i had this error "BASIC SYNTAX IS NOT SUPPORTED IN GROUP OR RECORD SELECTION FORMULA" i...
caesar_triasdana
caesar_trias...
Offline Send Email
Nov 21, 2007
5:56 pm
8108
It's complaining that the select statement for a query isn't supported, check your datasources for syntax involving "group by" or sub-queries that return more ...
tom m
ttmallard
Offline Send Email
Nov 21, 2007
11:36 pm
8109
is it CR XI bug ???? so what's the solution, should i change all my script ??? coz, when i used CR 8.5 its work fine ... eCHa ... From: tom m To:...
eCHa
caesar_trias...
Offline Send Email
Nov 22, 2007
2:23 am
8110
Hello, This is a Crystal issue, not an ASP issue. Crystal (BOBJ) has published a few kbase articles about it. It's related to the changes in Crystal Reports...
Cowboy Dan
cowboydanflo...
Offline Send Email
Nov 22, 2007
5:06 pm
8111
http://groups.yahoo.com/group/AspNetModelViewController/ has free discussion on ASP.net MVC Community Preview http://blog.charlescarroll.com/chazblog/?p=552 ...
Charles Carroll
charlesmarkc...
Offline Send Email
Dec 4, 2007
2:20 pm
8112
Wrox recently launched a new "classic" ASP 3 resource http://asp3wiki.wrox.com It does include the complete text of the bestselling ASP 3 book, Beginning ASP...
Charles Carroll
charlesmarkc...
Offline Send Email
Dec 5, 2007
3:54 pm
8113
Hello! I have a project assigned to me which requires a bit of ASP VBScript, but to be totally honest I don't know what much about the language. All my work...
Jeremy Patrick
admin2
Offline Send Email
Dec 6, 2007
10:18 am
8114
Does anyone ever use IIS in windows XP i already create website in asp n database using mdb access but i want update my database using web i created already ...
w죣ìé
weezid
Online Now Send Email
Dec 6, 2007
10:18 am
8115
Hello, This slightly ties into a earlier post but now I have made progress! I have a vbs file I managed to write and it works! It needs a bit of tweaking for...
Jeremy Patrick
admin2
Offline Send Email
Dec 7, 2007
5:51 am
8116
Hello, I've run into this before. You may want to check your query...the sql query you've created could be the root cause of this trouble. Try simplifying the...
Christina Karlhoff
ceekaye_1
Offline Send Email
Dec 7, 2007
1:55 pm
8117
It's proabably a rights issue, make sure that the correct user has write permission on the MDB file. (IUSR_MACHINENAME) I beleive is the correct one for XP. ...
mischa kroon
aemca_san
Offline Send Email
Dec 7, 2007
2:51 pm
8118
I want to develop a web application in which receiving and sending of SMS should be incorporated. any help?...
s_sanks
Offline Send Email
Dec 9, 2007
3:14 am
8119
besides mischa's reply, also make sure the database is not open while trying to update ... From: mischa kroon To: AspClassicAnyQuestionIsOk@yahoogroups.com ...
Celal Ozturk
cellosx
Offline Send Email
Dec 9, 2007
5:36 pm
8120
wscript.Echo becomes response.write strUserName=request.querystring("UserName") will pickup the value from a GET i.e. yourscript.aspx?user=BlahSmith or a form...
Charles Carroll
charlesmarkc...
Offline Send Email
Dec 10, 2007
10:50 am
8121
I had a simple asp page which pulled and displayed user info from the AD. Yesterday it was working, but today I get errors on simple things like objRootDSE =...
Jeremy Patrick
admin2
Offline Send Email
Dec 11, 2007
8:49 am
8122
use: CreateObject. instead of GetObject....
mischa kroon
aemca_san
Offline Send Email
Dec 11, 2007
1:57 pm
8123
Thanks for the info, but that didn't work. Here is the full page code: <%@ Language="VBScript" %> <% Dim strUserName Dim adoCommand, adoConnection, strBase,...
Jeremy Patrick
admin2
Offline Send Email
Dec 11, 2007
9:28 pm
8124
A permission change is the likely cause. objRootDSE = getObject("LDAP://rootDSE") may have worked before because of permissions....
Charles Carroll
charlesmarkc...
Offline Send Email
Dec 11, 2007
9:37 pm
8125
I tried running the page under a domain admin account and it still doesn't work. Is there anything actually wrong with the code? or could this be a change of...
Jeremy Patrick
admin2
Offline Send Email
Dec 11, 2007
11:37 pm
8126
I also thin GetObject is not going to work well or at all under ASP. CreateObject => Server.CreateObject is the way ASP creates/gets objects. I do think the...
Charles Carroll
charlesmarkc...
Offline Send Email
Dec 12, 2007
1:29 am
8127
I messed around with your change, but I couldn't get anything working. I started back over with disabling everything and one by one seeing what is error-ing...
Jeremy Patrick
admin2
Offline Send Email
Dec 12, 2007
4:08 am
8128
Ok I think this will be a rights issue. Since your executing from asp your using the account set up in the application pool to execute this code. This is a...
mischa kroon
aemca_san
Offline Send Email
Dec 12, 2007
9:19 am
8129
I'll look into the links you sent, but I had this page up and working on a W2K3 IIS server and no settings have been changed since I set it up a couple weeks...
Jeremy Patrick
admin2
Offline Send Email
Dec 13, 2007
10:38 pm
8130
I'll look into the links you sent, but I had this page up and working on a W2K3 IIS server and no settings have been changed since I set it up a couple weeks...
Jeremy Patrick
admin2
Offline Send Email
Dec 14, 2007
3:41 am
8131
My problem is when I do a recalculate (RECAL) the program is deleting the last options line instead of deleting the line associated with the item that has been...
jbga35
Offline Send Email
Dec 14, 2007
11:37 am
8132
First of all your statement "nothing has changed" is a mistake in logic. When something breaks a better assumption is "something changed whether I like it or...
Charles Carroll
charlesmarkc...
Offline Send Email
Dec 14, 2007
11:43 am
8133
I totally understand where you are coming from. When I converted the vbs file to asp and had it working, I copied all the code and saved it safely away. I...
Jeremy Patrick
admin2
Offline Send Email
Dec 15, 2007
12:00 am
Messages 8104 - 8133 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