E
Eric Goforth
Hello,
I found a C# example on the web that used an httpmodule. I've
translated it to VB.NET and the website compiles fine, but when I
build the website the iHttpModule doesn't compile, I can't figure out
why. I do have the following entry in my web.config file:
My iHttpModule Class implements iHttpModule (of course). I also have
an Init method that Implements IHttpModule.Init and Dispose method
that Implements IHttpModule.Dispose.
I think that my problem may be the syntax in the httpModules section
of the web.config file. My site is structured like:
/TestAppVB
web.config
myfile1.aspx
myfile1.aspx.vb
myfile2.aspx
myfile2.aspx.vb
/MyModule
MyModule.vb
MyModule.vb looks like:
'--------------------------------------------------------------------------------------
Imports Microsoft.VisualBasic
Imports System
Imports System.Collections
Imports System.Configuration
Imports System.Text
Imports System.Threading
Imports System.IO
Imports System.Reflection
Imports System.Web
Imports System.Xml
Imports System.Xml.XPath
'Namespace MyModule
Public Class MyModule
Implements IHttpModule, IConfigurationSectionHandler
Public Sub Dispose() Implements IHttpModule.Dispose
' add clean-up code here if required
End Sub
Public Sub Init(ByVal app As HttpApplication) Implements
IHttpModule.Init
' add init code here if required
End Sub
End Class
'End Namespace
'--------------------------------------------------------------------------------------
The code example that I found originally had this module in it's own
namespace, but I commented that out to try to simplify things. I was
thinking about trying to "flatten" the file structure and put MyModule
in the same virtual folder as the .aspx and .aspx.vb files.
Thanks,
Eric
I found a C# example on the web that used an httpmodule. I've
translated it to VB.NET and the website compiles fine, but when I
build the website the iHttpModule doesn't compile, I can't figure out
why. I do have the following entry in my web.config file:
</httpModules></system.web>
My iHttpModule Class implements iHttpModule (of course). I also have
an Init method that Implements IHttpModule.Init and Dispose method
that Implements IHttpModule.Dispose.
I think that my problem may be the syntax in the httpModules section
of the web.config file. My site is structured like:
/TestAppVB
web.config
myfile1.aspx
myfile1.aspx.vb
myfile2.aspx
myfile2.aspx.vb
/MyModule
MyModule.vb
MyModule.vb looks like:
'--------------------------------------------------------------------------------------
Imports Microsoft.VisualBasic
Imports System
Imports System.Collections
Imports System.Configuration
Imports System.Text
Imports System.Threading
Imports System.IO
Imports System.Reflection
Imports System.Web
Imports System.Xml
Imports System.Xml.XPath
'Namespace MyModule
Public Class MyModule
Implements IHttpModule, IConfigurationSectionHandler
Public Sub Dispose() Implements IHttpModule.Dispose
' add clean-up code here if required
End Sub
Public Sub Init(ByVal app As HttpApplication) Implements
IHttpModule.Init
' add init code here if required
End Sub
End Class
'End Namespace
'--------------------------------------------------------------------------------------
The code example that I found originally had this module in it's own
namespace, but I commented that out to try to simplify things. I was
thinking about trying to "flatten" the file structure and put MyModule
in the same virtual folder as the .aspx and .aspx.vb files.
Thanks,
Eric