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...
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...
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...
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 ...
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: 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...
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...
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...
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...
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...
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...
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!...
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, ...
Thanks folks! ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of Shawn K. Hall Sent: Friday, November 18,...
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...
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; ...
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......
Here's my connection string - connectionString = "server=MySQLServer; uid=sa; pwd=abcde1; database=Reporting" The SQL server is located on a different machine....
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...
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....
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...
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...
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...
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, 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...
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...