all groups > inetserver asp components > november 2003 > threads for november 8 - 14, 2003
Filter by week: 1 2 3 4 5
IIS6 and remote COM+
Posted by jokes54321 at 11/14/2003 5:05:13 PM
With the IIS 6 application pool worker thread running as the Network Service
account, what settings must be done to allow it to call COM+ components
located on another server?
... more >>
Problems with mid() function
Posted by Joeandtel at 11/14/2003 1:37:02 PM
'When I create a single character string
var str = "A"
'convert to ascii
num = asc(str)
Response.Write num ' 65 shows up
'when I have a whole string
str = "hello"
str = mid(str, 1, 1) ' return 'h'
num = asc(str)
'I get an error:
Invalid procedure call or argument: 'asc'
What can be done ... more >>
Excel Thread Left in System
Posted by CST at 11/14/2003 11:20:53 AM
Hi All,
I have run into a strange occurrence. Basically I want
to open up an Excel file and do a save as to html (I know
office automation on server is bad). I wrote a small com
application to do this. Please see the code below:
Option Explicit
Public Function XLSTest(XLSFileName A... more >>
object creation in global.asa
Posted by Nick at 11/14/2003 6:37:48 AM
In the global.asa I am using the followng code to generae
a session wide variable:
<OBJECT ID="gobjEnquiry" RUNAT="Server" SCOPE="Session"
PROGID="TCWebComponents.clsEnquiry">
</OBJECT>
I should be able to access this on any asp page using:
gobjEnquiry.user
Having moved the site to ... more >>
See the internet update
Posted by Ackermann at 11/14/2003 5:18:52 AM
Microsoft User
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which fixes
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to help p... more >>
RegExp Replace Method causes Access Violation
Posted by Alex at 11/14/2003 1:23:02 AM
Hi group,
I am using the VBScript RegExp object from an ASP-Page and
I got
the following debugger output, when calling the Replace()
method:
"First-chance exception at 0x77e97c5c in inetinfo.exe:
0xC0000005: Access
violation reading location 0x0000400c."
Otherwise the code is runni... more >>
COM Newbie Help
Posted by Damien Phillips at 11/13/2003 5:36:13 PM
Posted this on microsoft.public.vb.com but its probably more appropriate in
here.
Hi and thanks in advance!
I want to move existing VBS code from asp web pages into an activex dll to
aid code reuse. The existing functions can be grouped into three broad
groups.
Content - functions presen... more >>
LogonUser() Works Under NT4.0, Fails Under Win2K
Posted by Mike at 11/12/2003 5:29:24 PM
Any help would be greatly appreciated.
Based on MS KB article Q248187 (HOWTO: Impersonate a User from Active
Server Pages), I developed an ActiveX DLL (using VB6.0 Enterprise
SP5), and deployed to a corporate web site under NT Server 4.0 SP6a
/IIS4.0, expressly to retrieve Office documents con... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Trapping Error Raised by COM object
Posted by Nithi Gurusamy at 11/12/2003 9:39:56 AM
Dear Group:
If I raise an error in my COM object method, is there a way to trap it in my
ASP code where I created the COM object using Server.CreateObject?
My COM object is working with ADO objects. When there is an error thrown by
an ADO object, I want to raise the same error back to the ca... more >>
Simple Solution Escapes Me
Posted by Kimberly at 11/12/2003 7:27:25 AM
I have some .asp pages that request rather large data sets
form my web server. The problem I am having is that wehnt
he users try to print these pages, they of course print
out in an undesirable format because they are larger than
one page. My solution is to redirect these pages to Excel
o... more >>
Cant create object with IIS 6??
Posted by Lior at 11/11/2003 8:50:52 AM
Hi,
We have moved to host our site on IIS 6. Some web pages use a server-side
ActiveX. While on IIS 5 it worked flawlessly, here - ocaasionaly but
suddenly - it stops working! After restart for the IIS all is well again.
What can it be?
Any ideas?
Thanks,
Lior
... more >>
ASP IN EXCEL, trailing zeros being truncated
Posted by BARBARA FLOYD at 11/11/2003 2:10:50 AM
Hi,
I have an asp file which opens in Microsoft Excel.
I have used "FormatNumber" function to force variables I
display to be a certain number of decimal places.
However, Excel cuts off any zeros at the end.
eg. the number 5.640 displays as 5.64, even though I used
format number to 3 deci... more >>
filesystemobject stopped working
Posted by Walter Allen at 11/8/2003 5:46:22 PM
Hello experts,
I am running a web server on my WinXP machine. I have
used several ASP programs to build and display a guest
book and also collect visitor IP addresses. I have used
the filesystem objects to do these tasks, and it has
worked splendidly. On Sat. November 9th the ASPs stop... more >>
|