S
Santosh
Friends,
I have a DLL which has a Method called WriteStream, which outputs to the
screen just like a Response.Write (".......")
I would like to use this in ASPX page, I have no problem instantiating this
Object.
But When I want to use this Inside a Procedure say
<%@ Page Language="vb" autoeventwireup="false" aspcompat=true %>
Dim ObjWrite as Object
'
ObjWrite = Server.CreateObject("WriteObject.WriteClass")
Sub OutPutThistoScreen()
ObjWrite.WriteStream( "This is a Test" )
'
End Sub
I am not able to do the above, but this was possible in ASP why not in ASPX?
And how can I overcome this in ASPX.
Any help is greatly appreciated.
TIA.
I have a DLL which has a Method called WriteStream, which outputs to the
screen just like a Response.Write (".......")
I would like to use this in ASPX page, I have no problem instantiating this
Object.
But When I want to use this Inside a Procedure say
<%@ Page Language="vb" autoeventwireup="false" aspcompat=true %>
Dim ObjWrite as Object
'
ObjWrite = Server.CreateObject("WriteObject.WriteClass")
Sub OutPutThistoScreen()
ObjWrite.WriteStream( "This is a Test" )
'
End Sub
I am not able to do the above, but this was possible in ASP why not in ASPX?
And how can I overcome this in ASPX.
Any help is greatly appreciated.
TIA.