Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? 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 11225 - 11254 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11225
I have a script where a subroutine builds my tables and fills them with DB data. Is it possible to make a calculation and pass it to a root variable from the...
Bill
billebert777
Offline Send Email
Nov 3, 2005
5:02 pm
11226
You can reference / change a global variable from any sub or function within the same page or an included page. However personally I'd change the sub to a...
Dan Powderhill
danaspelite
Offline Send Email
Nov 3, 2005
5:28 pm
11227
Can't change this sub to func for way too many reasons. I have read about Global, Session and Application variables but I still dont know how to call a Global...
Bill
billebert777
Offline Send Email
Nov 4, 2005
1:28 am
11228
You can't really have global functions or subs, just global variables; To keep an amount for each user in the session_onStart event have Session("Amount") = 0 ...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Nov 4, 2005
9:33 am
11229
I have been with hostcentric for the past 6 years I have many web sites there -they were just bought out and no longer support the components that I use...
Adina Rosenbaum
elladir
Offline Send Email
Nov 7, 2005
3:30 am
11230
Adina: I used to use M6.Net, but I would NEVER recommend them and would encourage everyone to never use them. I have switched due to their poor service and...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Nov 7, 2005
12:47 pm
11231
I need to load data from an excel spreadsheet into SQL Server using Visual Basic .NET. Currently, I am retrieving the contents on an excel spreadsheet(around...
kpraoasp
Offline Send Email
Nov 10, 2005
2:42 pm
11232
Is this a one-off, or are you doing 3000 record inserts on a regular basis? If a one-off, don't worry about the efficiency. I it's a regular basis, then this...
David Smart
smartware_co...
Offline Send Email
Nov 10, 2005
8:21 pm
11233
Thanks Dave. This will be done monthly and the load takes around 15-20 minutes if the application and database are on different machines versus a couple of...
K Rao
kpraoasp
Offline Send Email
Nov 11, 2005
9:49 pm
11234
Hello Guys: We are in the process to deploying / testing VS2005 with .Net 2.0. However: one thing is REALLY confusing me. When I build my ASP.Net project: I...
Mills, Andy R. (Regen...
mtdewisgreen
Offline Send Email
Nov 15, 2005
1:22 pm
11235
The compilation is handled by the server now when the application starts. Most of the nonsense of .Net 1.* is gone, such as having to compile a Web site and...
Ray at home
ray_at_place
Offline Send Email
Nov 15, 2005
8:09 pm
11236
I use this code to check for an empty form field: <% IF (Request.Form("text") = "") THEN %> But how do I check for form field that DOES contain data? Thanks!...
Gary Broyhill
broyhillg
Offline Send Email
Nov 17, 2005
9:25 pm
11237
if request.form("text") <> "" then ... [Non-text portions of this message have been removed]...
Chris Hagwood
chris_hagwood
Offline Send Email
Nov 17, 2005
9:28 pm
11238
does using a trim() in here would be a good practise always? or is that only me doing it every time? Ilyas ... From: "Chris Hagwood" <cwh@...> To:...
Ilyas
iluilyas
Offline Send Email
Nov 18, 2005
8:05 am
11239
Hi Ilyas, ... Yes, it's excellent practice. You should use either a trim or append an empty string to the value in ordre to ensure that it's typed as string, ...
Shawn K. Hall
shawn_ra
Online Now Send Email
Nov 18, 2005
8:29 am
11240
Thanks folks! ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of Shawn K. Hall Sent: Friday, November 18,...
Gary Broyhill
broyhillg
Offline Send Email
Nov 18, 2005
2:13 pm
11241
Hi All, I am trying to connect my ASP .NET application to a SQL Server database and I am getting an error 'SQL Server does not exist or access denied'. I know...
kpraoasp
Offline Send Email
Nov 22, 2005
2:01 pm
11242
The problem is your connection string. It might also be the instance as sql2k allows you to run multiple versions, each with their own instance name; ...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Nov 22, 2005
2:20 pm
11243
This is always a tricky one! There are many variables here - it may help if you can supply us with the connection string you are using, and a bit more info......
mark wills
markrobertwills
Offline Send Email
Nov 22, 2005
2:23 pm
11244
Here's my connection string - connectionString = "server=MySQLServer; uid=sa; pwd=abcde1; database=Reporting" The SQL server is located on a different machine....
K Rao
kpraoasp
Offline Send Email
Nov 22, 2005
5:47 pm
11245
Hi K, If you are using Windows authentication, I think i'm right in saying that the user account must be defined on both machines... If you are using Windows...
mark wills
markrobertwills
Offline Send Email
Nov 22, 2005
10:19 pm
11246
Hi all. Am migrating a customer from IIS5 on W2K server to IIS6 on W2K3. Zipped all the websites and unzipped them to the identical locations on new server....
ba_ba_boo_oui
Offline Send Email
Nov 22, 2005
10:49 pm
11247
this is what u need to do http://www.visualwin.com/ASP/ Ilyas ... From: "ba_ba_boo_oui" <sloboda@...> To: <active-server-pages@yahoogroups.com> ...
Ilyas
iluilyas
Offline Send Email
Nov 23, 2005
6:35 am
11248
Mark, I think you are right. I opened up the Enterprise manager, Right Clicked on the server, clicked on properties and clicked on the Security tab. The...
K Rao
kpraoasp
Offline Send Email
Nov 23, 2005
2:50 pm
11249
Thanks Ilyas, but the solution listed in that link was already in place. I have gone as far as allowing Internet Data Connector and WebDAV... no difference. I...
ba_ba_boo_oui
Offline Send Email
Nov 23, 2005
4:47 pm
11250
... From: Adrian Forbes - ITD Sent: 23 November 2005 4:50 To: 'active-server-pages@yahoogroups.com' Subject: RE: [ASP] VBScript runtime error '800a01c9' It's...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Nov 23, 2005
4:55 pm
11251
I have a website that produces output in HTML. Most of my Clients would prefer it in Word. I'm expecting the solution would need to be generated through code...
The Professional Netw...
farfarley
Offline Send Email
Nov 24, 2005
6:44 am
11252
Hi Far, ... Did you tell them they were insane? Websites are intended to be HTML, and switching from a well-formed structured document using HTML to Word just...
Shawn K. Hall
shawn_ra
Online Now Send Email
Nov 24, 2005
6:57 am
11253
Shawn, It's been a while. Good to hear from you. While I totally agree with you regarding the limitations, my Clients are Technical Recruiters with whom I...
The Professional Netw...
farfarley
Offline Send Email
Nov 24, 2005
8:16 am
11254
Have a look at http://www.w3.org/Tools/html2things.html There is a zip file on there called html2word or something. I think its a word doc with a macro, it may...
mark wills
markrobertwills
Offline Send Email
Nov 24, 2005
9:14 am
Messages 11225 - 11254 of 12403   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