all groups > inetserver asp components > january 2005
Problem with getting value in Output param Using ActiveXDll
Posted by Uma at 1/28/2005 2:28:11 PM
Hi Pals,
As I am trying to access the ActivexDll function developed in VB from the
ASP page, it works smoothly but the output parameter(By Ref in VB function)
is not returning the value from the DLL function to the ASP page. Is
variable declared for output parameter in ASP need any other con... more >>
Excel.Application
Posted by Curioso.NET at 1/28/2005 11:53:03 AM
Hi
I want to show a excel workbook trough my webserver using ASP.
Wich dll's do I have to register in the webserver for this to work? Anyone
knows?
I don't want to install Excel in my web server, just the right dll's needed.
Thanks in advance
... more >>
Help on this error -- ActiveX component can't create object
Posted by john at 1/28/2005 10:01:02 AM
I got this error on the new environment. It works on the old environment.
New: window 2003 server. iis 6.0, Microsoft visual basic 6.0.
old: window 2000 server, iis 5.0, Microsoft visual basic 6.0.
This is a development environment.
Old: After start to run the vb6 from the IDE and the set... more >>
ASPFileUploads not working with MAC Safari browser
Posted by Foreman at 1/24/2005 8:07:01 AM
Using ASPFileUpload
(http://support.microsoft.com/default.aspx?scid=kb;en-us;299692) and works
for IE6 and FireFox but not Safari.
Thanks in advance for your assistance.... more >>
load DropDownList with lookup table field
Posted by Yall at 1/20/2005 7:47:05 AM
I can use this code in VB to load a Combo Box with a field from a look up
table.
'Load a Combo box list
Dim da As System.Data.OleDb.OleDbDataAdapter
Dim ds As New DataSet
'do the connect to database using procedure in module
Connect1()
strSQL = "S... more >>
iis Website properties
Posted by Walter12354 at 1/19/2005 1:21:03 PM
I would like to create an additional tab on the iis website properties page.
The function of this tab would be to allow the administrator to deny
admitance to requesters from particular countries. Can you point me to
documentation that explains how to add a tab to the page, and any other
... more >>
Check for broken ftp links
Posted by Gustaf at 1/16/2005 4:35:30 PM
Hi
Is there any easy and fast way to check for broken ftp links?
Ive used MSXML2.ServerXMLHTTP to check http links but it cant handle ftp :(
Thanks
... more >>
strange stawork.cpp error, com+ related?
Posted by Tobias Nygren at 1/12/2005 7:59:05 AM
Hello MSDN!
I have a asp-application running on a Windows Server 2003 Web Edition, and
on and off I get a lot of strange errors in the event viewer (application
tab):
"The run-time environment has detected an inconsistency in its internal
state. This indicates a potential instability in... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Is there any POP3 and NNTP component I can use as a ASP Component?
Posted by Miguel Minora at 1/11/2005 11:00:50 PM
What I want to do is to show always
the latest post on our company NNTP
and the newest email in my inbox
as an activex background on my desktop.
Thanks a lot
Miguel... more >>
ASPNET Account
Posted by Robert at 1/9/2005 5:33:50 AM
I was just looking things over and I noticed a new account under my users.
It's and ASPNET user, (account used for ASP.NET worker process....) I hadn't
noticed it before.
What is is?
What does it do?
Should it be disabled?
Should I make any changes?
Have been out of the loop for a while, co... more >>
ServerXmlHTTP not working as documented
Posted by Mark at 1/7/2005 3:17:07 PM
Hi...
I was trying to do a "fire and forget" request from an asp page - i.e. I
wanted to make an async request to another server to note an event, but I
wasn't interested in the response. I was using ServerXMLHTTP, but I found
that it doesn't appear to be working as advertised.
The docu... more >>
IIS server do not recognize asp in Windows 2003
Posted by Charts at 1/7/2005 8:13:01 AM
I installed a new Windows 2003 system. However IIS server do not recognize
asp file. IE gives me error, “http 404 file not foundâ€. I had Crystal report
8.0 installed, but I already ran scr8_webregfix.exe program, which resolves
issues with registry of ODBC data sources. Otherwise, IIS ... more >>
send email
Posted by Vinaya at 1/7/2005 2:09:02 AM
I am trying to build an intranet portal using asp. In this application I have
a subsscribe button using which user can can subscribe. I wanted to to know
how I can get mail address of user using login id (ntdom id). And also how I
can send mail in asp. I am new to ASP.... more >>
TYpe Mismatch erro
Posted by vinu thomas at 1/6/2005 7:41:04 AM
My asp code generate Type Mismatch error when passing a ado command object to
a com function written in VB
ASP code
============
Dim cmd,param
set cmd= Server.CreateObject("ADODB.Command")
cmd.CommandText = "tes_in"
cmd.CommandType=4
set param=cmd.CreateParameter("@c", adVarChar, adPar... more >>
Upload huge file size: "The page cannot be displayed" browser error
Posted by Joe at 1/4/2005 8:50:20 PM
I have an upload file operation in the web application. UploadForm.asp is
the form,
and UploadAction.asp is the form processing.
//UploadForm.asp
<FORM NAME="InputForm" ACTION="UploadAction.asp" METHOD="POST"
enctype=multipart/form-data>
<input type="file" name="fileName">
//etc ...
</FORM... more >>
problem running ASP on Server 2003
Posted by Edwin V. at 1/4/2005 1:15:44 PM
I noticed that none of my ASP forms created in FrontPage are running now
that we upgraded to Server 2003 from 2000. Is there a switch or something
that needs to be turned on to make my ASP pages work again? Any help is
appreciated.
... more >>
Type Missmatch error
Posted by vinu at 1/4/2005 7:35:13 AM
My problem is
i have created a Com(in vb ) which assept a MSXML2.DOMDocument as parameter
Public Sub InsBudgetVirement(xmlDocs As MSXML2.DOMDocument, userid As Integer)
ASP code is as folows
Dim xml
xml = "<xml id=""cct"">" & _
"<records>" & _
"<BDDate>2/2/2004</BDD... more >>
CreateObject of VB DLL fails in ASP page
Posted by idob NO[at]SPAM yaelsoft.com at 1/3/2005 3:02:34 PM
Hello
My problem is as following:
I have a VB6 DLL, which is called by an asp page with simple
createobject method.
It worked fine, but we've moved to a new server machine, and I get now
the message "ActiveX can't create object".
(When I try to refer the same VB DLL by another VB exe on this
... more >>
Is granting Modify permission on root folder secure?
Posted by PWSkamp at 1/2/2005 8:23:04 AM
In my ASP app, I want to use the File System Object's Movefile method to move
files between directories on the ASP server. To avoid a permission denied
error, I had to grant the app's root directory Modify permission (using the
Security tab on the directory's Properties dialog).
Before I p... more >>
|