Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

direct to dll

Status
Not open for further replies.

snowboardr

Programmer
Feb 22, 2002
1,401
PH
I know there is a way to do this, but can't find out how. Going directly to your dll like

mysite.com/index.dll

then i can use querystrings to access my pages. I know how to refer to my dll in an ASP page, and use the functions in the dll.
 
What's it doing or not doing?

What's the functionality of your .dll?

Have you included a reference to the ASP objects in your class so that you can access the Request & Response objects in order to be able to read the querystring, and then do something with it?

Sorry for the vague answer, but it was a pretty vague question.

paul
penny1.gif
penny1.gif
 
I am getting this error..

-2147467259 (0x80004005)

------------------------------



Option Explicit

' Declare Objects
Private objSession As Session
Private objRequest As Request
Private objApplication As Application
Private objResponse As Response


Public Sub OnStartPage(objScriptingContext As ScriptingContext)
Set objSession = objScriptingContext.Session()
Set objApplication = objScriptingContext.Application()
Set objRequest = objScriptingContext.Request()
Set objResponse = objScriptingContext.Response()

objResponse.Write ("Hello World")


End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top