N
Nathan Sokalski
I am trying to programmatically add an HttpHandlerAction, but I am recieving
a read-only error. The code I am using is basically as follows:
Dim currhandlers As System.Web.Configuration.HttpHandlerActionCollection =
CType(System.Configuration.ConfigurationManager.GetSection("system.web/httpHandlers"),
System.Web.Configuration.HttpHandlersSection).Handlers
currhandlers.Add(New System.Web.Configuration.HttpHandlerAction(mypath,
"mytype", "*", False))
What do I need to do to add an HttpHandlerAction? Any help would be
appreciated. Thanks.
a read-only error. The code I am using is basically as follows:
Dim currhandlers As System.Web.Configuration.HttpHandlerActionCollection =
CType(System.Configuration.ConfigurationManager.GetSection("system.web/httpHandlers"),
System.Web.Configuration.HttpHandlersSection).Handlers
currhandlers.Add(New System.Web.Configuration.HttpHandlerAction(mypath,
"mytype", "*", False))
What do I need to do to add an HttpHandlerAction? Any help would be
appreciated. Thanks.