C
Chuck
I have a dll library with an Embedded aspx file.
Within some othercode I do a Response.Redirect to the aspx embedded resource
by using a Virtual Path.
The dll library and NameSpace is called Util.
Within the aspx file I have a script. I want to call to another Method
within Util.
How do I do this.
I get the message type or Namespace Util not found.
<%@ Import Namespace="Util" %>
<%@ Assembly Name="Util" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
this.Title = ConfigurationManager.AppSettings["ApplicationName"] + "
problem";
Util.ExceptionHandling.ExceptionHandlingConfiguration ConfigInfo =
(Util.ExceptionHandling.ExceptionHandlingConfiguration)ConfigurationManager.GetSection("ExceptionHandlingConfiguration");
}
</script>
Within some othercode I do a Response.Redirect to the aspx embedded resource
by using a Virtual Path.
The dll library and NameSpace is called Util.
Within the aspx file I have a script. I want to call to another Method
within Util.
How do I do this.
I get the message type or Namespace Util not found.
<%@ Import Namespace="Util" %>
<%@ Assembly Name="Util" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
this.Title = ConfigurationManager.AppSettings["ApplicationName"] + "
problem";
Util.ExceptionHandling.ExceptionHandlingConfiguration ConfigInfo =
(Util.ExceptionHandling.ExceptionHandlingConfiguration)ConfigurationManager.GetSection("ExceptionHandlingConfiguration");
}
</script>