Here is my situation:
I have an aspx file stored in a resource file. All of the C# code is
written inline via <script runat="server"tags. Let's call this page
B. I also have page A that contains some javascript code that calls
window.open. I pass the resource url of page B to Page A's window.open
call. Page B is then loaded and executed but none of the server-side
code is rendered. If I view the source of the page, the code (and page
declaration) are visible.
How do I get this to render the C# code properly?
Sample code:
Assembly.cs
[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
PerformSubstitution = true)]
PageA.aspx (C#)
public string ns = "";
protected void Page_Load(object sender, EventArgs e)
{
ns = Page.ClientScript.GetWebResourceUrl(GetType(),
"MyTest.MyFile.aspx");
}
PageA.aspx (javascript)
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
<!--
function Button1_onclick()
{
window.open(<%=ns%>, "_blank",
"menubar=no,titlebar=no,toolbar=no,status=no") ;
}
// -->
</script>
</head>
<body>
<input id="Button1" type="button" value="button"
language="javascript" onclick="return Button1_onclick()" />
</body>
</html>
MyFile.ascx (stored in resource file)
<%@ Page Language="C#" %>
<html>
<head runat="server">
<title>MyTitle</title>
</head>
<body bgcolor="#6699cc">
<form id="form1" runat="server">
</form>
</body>
</html>
<script runat="server" type="text/C#">
protected override void OnLoad(EventArgs e)
{
Response.Write("I am writing to dee page!");
base.OnLoad(e);
}
</script> 13 3430
Hi Bob,
have you tried opening Page B by entering its URL? It doesn't make any difference for the server whether you open a page using JavaScript or any other way. I guess your page doesn't work at all. Did you use any of the file extensions recognized by ASP.NET for your page?
HTH,
Axel Dahmen
-----------------
"Bob Jones" <go********@gmail.comschrieb im Newsbeitrag news:11**********************@v33g2000cwv.googlegr oups.com...
Here is my situation:
I have an aspx file stored in a resource file. All of the C# code is
written inline via <script runat="server"tags. Let's call this page
B. I also have page A that contains some javascript code that calls
window.open. I pass the resource url of page B to Page A's window.open
call. Page B is then loaded and executed but none of the server-side
code is rendered. If I view the source of the page, the code (and page
declaration) are visible.
How do I get this to render the C# code properly?
Sample code:
Assembly.cs
[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
PerformSubstitution = true)]
PageA.aspx (C#)
public string ns = "";
protected void Page_Load(object sender, EventArgs e)
{
ns = Page.ClientScript.GetWebResourceUrl(GetType(),
"MyTest.MyFile.aspx");
}
PageA.aspx (javascript)
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
<!--
function Button1_onclick()
{
window.open(<%=ns%>, "_blank",
"menubar=no,titlebar=no,toolbar=no,status=no") ;
}
// -->
</script>
</head>
<body>
<input id="Button1" type="button" value="button"
language="javascript" onclick="return Button1_onclick()" />
</body>
</html>
MyFile.ascx (stored in resource file)
<%@ Page Language="C#" %>
<html>
<head runat="server">
<title>MyTitle</title>
</head>
<body bgcolor="#6699cc">
<form id="form1" runat="server">
</form>
</body>
</html>
<script runat="server" type="text/C#">
protected override void OnLoad(EventArgs e)
{
Response.Write("I am writing to dee page!");
base.OnLoad(e);
}
</script>
On Feb 20, 9:13 am, "Axel Dahmen" <KeenToK...@newsgroup.nospamwrote:
Hi Bob,
have you tried opening Page B by entering its URL? It doesn't make any difference for the server whether you open a page using JavaScript or any other way. I guess your page doesn't work at all. Did you use any of the file extensions recognized by ASP.NET for your page?
HTH,
Axel Dahmen
-----------------
"Bob Jones" <goodold...@gmail.comschrieb im Newsbeitragnews:11**********************@v33g2000c wv.googlegroups.com...
Here is my situation:
I have an aspx file stored in a resource file. All of the C# code is
written inline via <script runat="server"tags. Let's call this page
B. I also have page A that contains some javascript code that calls
window.open. I pass the resource url of page B to Page A's window.open
call. Page B is then loaded and executed but none of the server-side
code is rendered. If I view the source of the page, the code (and page
declaration) are visible.
How do I get this to render the C# code properly?
Sample code:
Assembly.cs
[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
PerformSubstitution = true)]
PageA.aspx (C#)
public string ns = "";
protected void Page_Load(object sender, EventArgs e)
{
ns = Page.ClientScript.GetWebResourceUrl(GetType(),
"MyTest.MyFile.aspx");
}
PageA.aspx (javascript)
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
<!--
function Button1_onclick()
{
window.open(<%=ns%>, "_blank",
"menubar=no,titlebar=no,toolbar=no,status=no") ;
}
// -->
</script>
</head>
<body>
<input id="Button1" type="button" value="button"
language="javascript" onclick="return Button1_onclick()" />
</body>
</html>
MyFile.ascx (stored in resource file)
<%@ Page Language="C#" %>
<html>
<head runat="server">
<title>MyTitle</title>
</head>
<body bgcolor="#6699cc">
<form id="form1" runat="server">
</form>
</body>
</html>
<script runat="server" type="text/C#">
protected override void OnLoad(EventArgs e)
{
Response.Write("I am writing to dee page!");
base.OnLoad(e);
}
</script>- Hide quoted text -
- Show quoted text -
Axel,
Calling the page directly produces the same output. I am not sure I am
understanding how I would go about addid the .aspx extention to the
resource url as it looks like this: http://localhost:1169/WebResource.ax...75600008593750
I do, however, think you may be on to something. As a side note, if
you view the source of the page you will see exactly was is specified
(verbatim) under the MyFile.ascx (stored in resource file) section I
posted eairler.
-David
It looks like to me the whole content of an ASPX page is stored inside a
resource ? Is this correct ? A resource just stores some data so the ASP.NET
engine doesn't have any idea that this is actually something you would like
to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes to mind
would be to save this in an ASPX file as usual. Else elaborate on what you
are trying to do in case someone would have a simpler approach to suggest...
"Bob Jones" <go********@gmail.coma écrit dans le message de news: 11**********************@v33g2000cwv.googlegroups. com...
Here is my situation:
I have an aspx file stored in a resource file. All of the C# code is
written inline via <script runat="server"tags. Let's call this page
B. I also have page A that contains some javascript code that calls
window.open. I pass the resource url of page B to Page A's window.open
call. Page B is then loaded and executed but none of the server-side
code is rendered. If I view the source of the page, the code (and page
declaration) are visible.
How do I get this to render the C# code properly?
Sample code:
Assembly.cs
[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
PerformSubstitution = true)]
PageA.aspx (C#)
public string ns = "";
protected void Page_Load(object sender, EventArgs e)
{
ns = Page.ClientScript.GetWebResourceUrl(GetType(),
"MyTest.MyFile.aspx");
}
PageA.aspx (javascript)
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
<!--
function Button1_onclick()
{
window.open(<%=ns%>, "_blank",
"menubar=no,titlebar=no,toolbar=no,status=no") ;
}
// -->
</script>
</head>
<body>
<input id="Button1" type="button" value="button"
language="javascript" onclick="return Button1_onclick()" />
</body>
</html>
MyFile.ascx (stored in resource file)
<%@ Page Language="C#" %>
<html>
<head runat="server">
<title>MyTitle</title>
</head>
<body bgcolor="#6699cc">
<form id="form1" runat="server">
</form>
</body>
</html>
<script runat="server" type="text/C#">
protected override void OnLoad(EventArgs e)
{
Response.Write("I am writing to dee page!");
base.OnLoad(e);
}
</script>
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
It looks like to me the whole content of an ASPX page is stored inside a
resource ? Is this correct ? A resource just stores some data so the ASP.NET
engine doesn't have any idea that this is actually something you would like
to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes to mind
would be to save this in an ASPX file as usual. Else elaborate on what you
are trying to do in case someone would have a simpler approach to suggest....
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171980219.088072.326...@v33g2000cwv.googlegroups. com...
Here is my situation:
I have an aspx file stored in a resource file. All of the C# code is
written inline via <script runat="server"tags. Let's call this page
B. I also have page A that contains some javascript code that calls
window.open. I pass the resource url of page B to Page A's window.open
call. Page B is then loaded and executed but none of the server-side
code is rendered. If I view the source of the page, the code (and page
declaration) are visible.
How do I get this to render the C# code properly?
Sample code:
Assembly.cs
[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
PerformSubstitution = true)]
PageA.aspx (C#)
public string ns = "";
protected void Page_Load(object sender, EventArgs e)
{
ns = Page.ClientScript.GetWebResourceUrl(GetType(),
"MyTest.MyFile.aspx");
}
PageA.aspx (javascript)
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
<!--
function Button1_onclick()
{
window.open(<%=ns%>, "_blank",
"menubar=no,titlebar=no,toolbar=no,status=no") ;
}
// -->
</script>
</head>
<body>
<input id="Button1" type="button" value="button"
language="javascript" onclick="return Button1_onclick()" />
</body>
</html>
MyFile.ascx (stored in resource file)
<%@ Page Language="C#" %>
<html>
<head runat="server">
<title>MyTitle</title>
</head>
<body bgcolor="#6699cc">
<form id="form1" runat="server">
</form>
</body>
</html>
<script runat="server" type="text/C#">
protected override void OnLoad(EventArgs e)
{
Response.Write("I am writing to dee page!");
base.OnLoad(e);
}
</script>- Hide quoted text -
- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile it
before returning the page.
you only trick will be deploying the code if you use a precompiled site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
>It looks like to me the whole content of an ASPX page is stored inside a resource ? Is this correct ? A resource just stores some data so the ASP.NET engine doesn't have any idea that this is actually something you would like to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes to mind would be to save this in an ASPX file as usual. Else elaborate on what you are trying to do in case someone would have a simpler approach to suggest...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news: 1171980219.088072.326...@v33g2000cwv.googlegroups .com...
>>Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains some javascript code that calls window.open. I pass the resource url of page B to Page A's window.open call. Page B is then loaded and executed but none of the server-side code is rendered. If I view the source of the page, the code (and page declaration) are visible. How do I get this to render the C# code properly? Sample code: Assembly.cs [assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html", PerformSubstitution = true)] PageA.aspx (C#) public string ns = ""; protected void Page_Load(object sender, EventArgs e) { ns = Page.ClientScript.GetWebResourceUrl(GetType(), "MyTest.MyFile.aspx"); } PageA.aspx (javascript) <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <script language="javascript" type="text/javascript"> <!-- function Button1_onclick() { window.open(<%=ns%>, "_blank", "menubar=no,titlebar=no,toolbar=no,status=no") ; } // --> </script> </head> <body> <input id="Button1" type="button" value="button" language="javascript" onclick="return Button1_onclick()" /> </body> </html> MyFile.ascx (stored in resource file) <%@ Page Language="C#" %> <html> <head runat="server"> <title>MyTitle</title> </head> <body bgcolor="#6699cc"> <form id="form1" runat="server"> </form> </body> </html> <script runat="server" type="text/C#"> protected override void OnLoad(EventArgs e) { Response.Write("I am writing to dee page!"); base.OnLoad(e); } </script>- Hide quoted text -
- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David
On Feb 20, 11:22 am, bruce barker <nos...@nospam.comwrote:
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile it
before returning the page.
you only trick will be deploying the code if you use a precompiled site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
It looks like to me the whole content of an ASPX page is stored insidea
resource ? Is this correct ? A resource just stores some data so the ASP.NET
engine doesn't have any idea that this is actually something you wouldlike
to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes tomind
would be to save this in an ASPX file as usual. Else elaborate on whatyou
are trying to do in case someone would have a simpler approach to suggest...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171980219.088072.326...@v33g2000cwv.googlegroups. com...
>Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains some javascript code that calls window.open. I pass the resource url of page B to Page A's window.open call. Page B is then loaded and executed but none of the server-side code is rendered. If I view the source of the page, the code (and page declaration) are visible. How do I get this to render the C# code properly? Sample code: Assembly.cs [assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html", PerformSubstitution = true)] PageA.aspx (C#) public string ns = ""; protected void Page_Load(object sender, EventArgs e) { ns = Page.ClientScript.GetWebResourceUrl(GetType(), "MyTest.MyFile.aspx"); } PageA.aspx (javascript) <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <script language="javascript" type="text/javascript"> <!-- function Button1_onclick() { window.open(<%=ns%>, "_blank", "menubar=no,titlebar=no,toolbar=no,status=no") ; } // --> </script> </head> <body> <input id="Button1" type="button" value="button" language="javascript" onclick="return Button1_onclick()" /> </body> </html> MyFile.ascx (stored in resource file) <%@ Page Language="C#" %> <html> <head runat="server"> <title>MyTitle</title> </head> <body bgcolor="#6699cc"> <form id="form1" runat="server"> </form> </body> </html> <script runat="server" type="text/C#"> protected override void OnLoad(EventArgs e) { Response.Write("I am writing to dee page!"); base.OnLoad(e); } </script>- Hide quoted text -
- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David- Hide quoted text -
- Show quoted text -
Bruce,
I appreciate the response but what you mentioned does not solve my
problem nor does it suggest anything other than placing a static page
on the web site. I also mentioned that the c# code is inline and, to
the best of my knowledge, the page is not compiled until runtime.
Am I not correct about this?
-David
This is correct but the problem is that the resource architecture doesn't
care this is ASPX code. From a resource point of view this is just some
text. So ASP.NET doesn't compile and run this...
I don't really see an obvious way to do this with your requirements. You
could perhaps have a server side page that fetch this resource, then use
System.Net.WebClient to call the page and then return the resulting HTML
while deleting the temporary page hoping yiour requirements really needs
these kind of cumbersome architecture...
"Bob Jones" <go********@gmail.coma écrit dans le message de news: 11*********************@s48g2000cws.googlegroups.c om...
On Feb 20, 11:22 am, bruce barker <nos...@nospam.comwrote:
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile it
before returning the page.
you only trick will be deploying the code if you use a precompiled site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
It looks like to me the whole content of an ASPX page is stored inside
a
resource ? Is this correct ? A resource just stores some data so the
ASP.NET
engine doesn't have any idea that this is actually something you would
like
to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes to
mind
would be to save this in an ASPX file as usual. Else elaborate on what
you
are trying to do in case someone would have a simpler approach to
suggest...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171980219.088072.326...@v33g2000cwv.googlegroups. com...
>Here is my situation: I have an aspx file stored in a resource file. All of the C# code is written inline via <script runat="server"tags. Let's call this page B. I also have page A that contains some javascript code that calls window.open. I pass the resource url of page B to Page A's window.open call. Page B is then loaded and executed but none of the server-side code is rendered. If I view the source of the page, the code (and page declaration) are visible. How do I get this to render the C# code properly? Sample code: Assembly.cs [assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html", PerformSubstitution = true)] PageA.aspx (C#) public string ns = ""; protected void Page_Load(object sender, EventArgs e) { ns = Page.ClientScript.GetWebResourceUrl(GetType(), "MyTest.MyFile.aspx"); } PageA.aspx (javascript) <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <script language="javascript" type="text/javascript"> <!-- function Button1_onclick() { window.open(<%=ns%>, "_blank", "menubar=no,titlebar=no,toolbar=no,status=no") ; } // --> </script> </head> <body> <input id="Button1" type="button" value="button" language="javascript" onclick="return Button1_onclick()" /> </body> </html> MyFile.ascx (stored in resource file) <%@ Page Language="C#" %> <html> <head runat="server"> <title>MyTitle</title> </head> <body bgcolor="#6699cc"> <form id="form1" runat="server"> </form> </body> </html> <script runat="server" type="text/C#"> protected override void OnLoad(EventArgs e) { Response.Write("I am writing to dee page!"); base.OnLoad(e); } </script>- Hide quoted text -
- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David- Hide quoted text -
- Show quoted text -
Bruce,
I appreciate the response but what you mentioned does not solve my
problem nor does it suggest anything other than placing a static page
on the web site. I also mentioned that the c# code is inline and, to
the best of my knowledge, the page is not compiled until runtime.
Am I not correct about this?
-David
On Feb 20, 11:59 am, "Patrice" <http://www.chez.com/scribe/wrote:
This is correct but the problem is that the resource architecture doesn't
care this is ASPX code. From a resource point of view this is just some
text. So ASP.NET doesn't compile and run this...
I don't really see an obvious way to do this with your requirements. You
could perhaps have a server side page that fetch this resource, then use
System.Net.WebClient to call the page and then return the resulting HTML
while deleting the temporary page hoping yiour requirements really needs
these kind of cumbersome architecture...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171989383.468841.92...@s48g2000cws.googlegroups.c om...
On Feb 20, 11:22 am, bruce barker <nos...@nospam.comwrote:
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile it
before returning the page.
you only trick will be deploying the code if you use a precompiled site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
>It looks like to me the whole content of an ASPX page is stored inside
>a
>resource ? Is this correct ? A resource just stores some data so the
>ASP.NET
>engine doesn't have any idea that this is actually something you would
>like
>to run (I'm surprised even it lets you serve resx files).
>I'm not sure what is the overall goal but the first idea that comes to
>mind
>would be to save this in an ASPX file as usual. Else elaborate on what
>you
>are trying to do in case someone would have a simpler approach to
>suggest...
>"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
>1171980219.088072.326...@v33g2000cwv.googlegroups .com...
>>Here is my situation:
>>I have an aspx file stored in a resource file. All of the C# code is
>>written inline via <script runat="server"tags. Let's call this page
>>B. I also have page A that contains some javascript code that calls
>>window.open. I pass the resource url of page B to Page A's window.open
>>call. Page B is then loaded and executed but none of the server-side
>>code is rendered. If I view the source of the page, the code (and page
>>declaration) are visible.
>>How do I get this to render the C# code properly?
>>Sample code:
>>Assembly.cs
>>[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
>>PerformSubstitution = true)]
>>PageA.aspx (C#)
>>public string ns = "";
>>protected void Page_Load(object sender, EventArgs e)
>>{
>>ns = Page.ClientScript.GetWebResourceUrl(GetType(),
>>"MyTest.MyFile.aspx");
>>}
>>PageA.aspx (javascript)
>><%@ Page Language="C#" AutoEventWireup="true"
>>CodeFile="Default2.aspx.cs" Inherits="Default2" %>
>><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>"http://
>>>www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>><html xmlns="http://www.w3.org/1999/xhtml" >
>><head runat="server">
>> <title>Untitled Page</title>
>><script language="javascript" type="text/javascript">
>><!--
>>function Button1_onclick()
>>{
>>window.open(<%=ns%>, "_blank",
>>"menubar=no,titlebar=no,toolbar=no,status=no") ;
>>}
>>// -->
>></script>
>></head>
>><body>
>><input id="Button1" type="button" value="button"
>>language="javascript" onclick="return Button1_onclick()" />
>></body>
>></html>
>>MyFile.ascx (stored in resource file)
>><%@ Page Language="C#" %>
>><html>
>><head runat="server">
>><title>MyTitle</title>
>></head>
>><body bgcolor="#6699cc">
>><form id="form1" runat="server">
>></form>
>></body>
>></html>
>><script runat="server" type="text/C#">
>>protected override void OnLoad(EventArgs e)
>>{
>>Response.Write("I am writing to dee page!");
>>base.OnLoad(e);
>>}
>></script>- Hide quoted text -
>- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David- Hide quoted text -
- Show quoted text -
Bruce,
I appreciate the response but what you mentioned does not solve my
problem nor does it suggest anything other than placing a static page
on the web site. I also mentioned that the c# code is inline and, to
the best of my knowledge, the page is not compiled until runtime.
Am I not correct about this?
-David- Hide quoted text -
- Show quoted text -
Is there a way to make ASp.Net render this page as an aspx page
instead of a text file? I was under the impression that since I am
getting a resource and then rendering it in the browser as html
asp.net would parse it all out properly? Maybe the MIME type of text/
html is not correct? If I change it to text/aspx then it prompts me to
download the .axd resource file
Is there perhaps a better way to accomplish what I want to do?
-David
Hi Bob,
can you please be a bit more precise on what you're planning to do? I don't get the picture from what you've wrote.
Here's my comments on what I understood from your text:
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page.
= JavaScript, no ASP.NET magic.
The page that needs to be displayed could be stored anywhere
on the site
= ... like any .aspx page does ...
and should be easily editable by a novice developer
= ... again like any .aspx page does. ASP.NET is no more difficult to author than HTML.
(no asp.net server controls which require writing the control without
a designer)
= I guess, you mean "with a designer". In fact a designer is not required for ASP.NET. Designer feature is just a nifty service provided by Visual Studio.
but the pages should not be accessible to a user by typing it in the url directly.
= ... like any .aspx page does ...
I was hoping I could mask this by storing a generic aspx file in a resource file and pass in say a namespace or something that the embedded pages c# code would then invoke and render to the page. Is my methodology wrong? Is there a better or more common approach?
= Well, it depends. If you want others to dynamically add code to pages you've written, you might want to:
* Create a public interface allowing other users to implement it
in their classes.
* give public read/write access to the App_Code directory so
others may add new classes to that directory
* Use the interface definition mentioned above into your aspx file
and use Reflection to create the newly created classes from the
App_Code directory.
* Add a URL parameter to the page to be able to provide the class
name to Reflection.
HTH,
Axel
>but the pages should not be accessible to a user by typing it in the url directly.
> = ... like any .aspx page does ...
Oops... Didn't read the "not".
Page content MUST be accessible by a URL. In fact, there's no way to call ANY content in any other way. Even your .axd call is a valid URL. Anyone can call it with no problem. The file extension doesn't make any difference.
Except for the server, switching on ASP.NET processing only for certain file extensions. But this doesn't affect the client in any way.
HTH,
Axel
IMO no. This information is for the client. Im' not sure how you could tell
the server that it has to do something on the resource before sending back
the result.
Keep in mind that the webresource stuff was done to serve "raw" content.
"Bob Jones" <go********@gmail.coma écrit dans le message de news: 11*********************@h3g2000cwc.googlegroups.co m...
On Feb 20, 11:59 am, "Patrice" <http://www.chez.com/scribe/wrote:
This is correct but the problem is that the resource architecture doesn't
care this is ASPX code. From a resource point of view this is just some
text. So ASP.NET doesn't compile and run this...
I don't really see an obvious way to do this with your requirements. You
could perhaps have a server side page that fetch this resource, then use
System.Net.WebClient to call the page and then return the resulting HTML
while deleting the temporary page hoping yiour requirements really needs
these kind of cumbersome architecture...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171989383.468841.92...@s48g2000cws.googlegroups.c om...
On Feb 20, 11:22 am, bruce barker <nos...@nospam.comwrote:
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile it
before returning the page.
you only trick will be deploying the code if you use a precompiled site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
>It looks like to me the whole content of an ASPX page is stored
>inside
>a
>resource ? Is this correct ? A resource just stores some data so the
>ASP.NET
>engine doesn't have any idea that this is actually something you
>would
>like
>to run (I'm surprised even it lets you serve resx files).
>I'm not sure what is the overall goal but the first idea that comes
>to
>mind
>would be to save this in an ASPX file as usual. Else elaborate on
>what
>you
>are trying to do in case someone would have a simpler approach to
>suggest...
>"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
>1171980219.088072.326...@v33g2000cwv.googlegroups .com...
>>Here is my situation:
>>I have an aspx file stored in a resource file. All of the C# code is
>>written inline via <script runat="server"tags. Let's call this
>>page
>>B. I also have page A that contains some javascript code that calls
>>window.open. I pass the resource url of page B to Page A's
>>window.open
>>call. Page B is then loaded and executed but none of the server-side
>>code is rendered. If I view the source of the page, the code (and
>>page
>>declaration) are visible.
>>How do I get this to render the C# code properly?
>>Sample code:
>>Assembly.cs
>>[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
>>PerformSubstitution = true)]
>>PageA.aspx (C#)
>>public string ns = "";
>>protected void Page_Load(object sender, EventArgs e)
>>{
>>ns = Page.ClientScript.GetWebResourceUrl(GetType(),
>>"MyTest.MyFile.aspx");
>>}
>>PageA.aspx (javascript)
>><%@ Page Language="C#" AutoEventWireup="true"
>>CodeFile="Default2.aspx.cs" Inherits="Default2" %>
>><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>"http://
>>>www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>><html xmlns="http://www.w3.org/1999/xhtml" >
>><head runat="server">
>> <title>Untitled Page</title>
>><script language="javascript" type="text/javascript">
>><!--
>>function Button1_onclick()
>>{
>>window.open(<%=ns%>, "_blank",
>>"menubar=no,titlebar=no,toolbar=no,status=no") ;
>>}
>>// -->
>></script>
>></head>
>><body>
>><input id="Button1" type="button" value="button"
>>language="javascript" onclick="return Button1_onclick()" />
>></body>
>></html>
>>MyFile.ascx (stored in resource file)
>><%@ Page Language="C#" %>
>><html>
>><head runat="server">
>><title>MyTitle</title>
>></head>
>><body bgcolor="#6699cc">
>><form id="form1" runat="server">
>></form>
>></body>
>></html>
>><script runat="server" type="text/C#">
>>protected override void OnLoad(EventArgs e)
>>{
>>Response.Write("I am writing to dee page!");
>>base.OnLoad(e);
>>}
>></script>- Hide quoted text -
>- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David- Hide quoted text -
- Show quoted text -
Bruce,
I appreciate the response but what you mentioned does not solve my
problem nor does it suggest anything other than placing a static page
on the web site. I also mentioned that the c# code is inline and, to
the best of my knowledge, the page is not compiled until runtime.
Am I not correct about this?
-David- Hide quoted text -
- Show quoted text -
Is there a way to make ASp.Net render this page as an aspx page
instead of a text file? I was under the impression that since I am
getting a resource and then rendering it in the browser as html
asp.net would parse it all out properly? Maybe the MIME type of text/
html is not correct? If I change it to text/aspx then it prompts me to
download the .axd resource file
Is there perhaps a better way to accomplish what I want to do?
-David
On Feb 21, 3:42 am, "Patrice" <http://www.chez.com/scribe/wrote:
IMO no. This information is for the client. Im' not sure how you could tell
the server that it has to do something on the resource before sending back
the result.
Keep in mind that the webresource stuff was done to serve "raw" content.
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171993105.593017.98...@h3g2000cwc.googlegroups.co m...
On Feb 20, 11:59 am, "Patrice" <http://www.chez.com/scribe/wrote:
This is correct but the problem is that the resource architecture doesn't
care this is ASPX code. From a resource point of view this is just some
text. So ASP.NET doesn't compile and run this...
I don't really see an obvious way to do this with your requirements. You
could perhaps have a server side page that fetch this resource, then use
System.Net.WebClient to call the page and then return the resulting HTML
while deleting the temporary page hoping yiour requirements really needs
these kind of cumbersome architecture...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171989383.468841.92...@s48g2000cws.googlegroups.c om...
On Feb 20, 11:22 am, bruce barker <nos...@nospam.comwrote:
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile it
before returning the page.
you only trick will be deploying the code if you use a precompiled site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
It looks like to me the whole content of an ASPX page is stored
inside
a
resource ? Is this correct ? A resource just stores some data so the
ASP.NET
engine doesn't have any idea that this is actually something you
would
like
to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes
to
mind
would be to save this in an ASPX file as usual. Else elaborate on
what
you
are trying to do in case someone would have a simpler approach to
suggest...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171980219.088072.326...@v33g2000cwv.googlegroups. com...
>Here is my situation:
>I have an aspx file stored in a resource file. All of the C# codeis
>written inline via <script runat="server"tags. Let's call this
>page
>B. I also have page A that contains some javascript code that calls
>window.open. I pass the resource url of page B to Page A's
>window.open
>call. Page B is then loaded and executed but none of the server-side
>code is rendered. If I view the source of the page, the code (and
>page
>declaration) are visible.
>How do I get this to render the C# code properly?
>Sample code:
>Assembly.cs
>[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
>PerformSubstitution = true)]
>PageA.aspx (C#)
>public string ns = "";
>protected void Page_Load(object sender, EventArgs e)
>{
>ns = Page.ClientScript.GetWebResourceUrl(GetType(),
>"MyTest.MyFile.aspx");
>}
>PageA.aspx (javascript)
><%@ Page Language="C#" AutoEventWireup="true"
>CodeFile="Default2.aspx.cs" Inherits="Default2" %>
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>"http://
>>www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
><html xmlns="http://www.w3.org/1999/xhtml" >
><head runat="server">
> <title>Untitled Page</title>
><script language="javascript" type="text/javascript">
><!--
>function Button1_onclick()
>{
>window.open(<%=ns%>, "_blank",
>"menubar=no,titlebar=no,toolbar=no,status=no") ;
>}
>// -->
></script>
></head>
><body>
><input id="Button1" type="button" value="button"
>language="javascript" onclick="return Button1_onclick()" />
></body>
></html>
>MyFile.ascx (stored in resource file)
><%@ Page Language="C#" %>
><html>
><head runat="server">
><title>MyTitle</title>
></head>
><body bgcolor="#6699cc">
><form id="form1" runat="server">
></form>
></body>
></html>
><script runat="server" type="text/C#">
>protected override void OnLoad(EventArgs e)
>{
>Response.Write("I am writing to dee page!");
>base.OnLoad(e);
>}
></script>- Hide quoted text -
- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control to
be displayed in a pop-up window when a user clicks on a hyperlink in a
web page. The page that needs to be displayed could be stored anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David- Hide quoted text -
- Show quoted text -
Bruce,
I appreciate the response but what you mentioned does not solve my
problem nor does it suggest anything other than placing a static page
on the web site. I also mentioned that the c# code is inline and, to
the best of my knowledge, the page is not compiled until runtime.
Am I not correct about this?
-David- Hide quoted text -
- Show quoted text -
Is there a way to make ASp.Net render this page as an aspx page
instead of a text file? I was under the impression that since I am
getting a resource and then rendering it in the browser as html
asp.net would parse it all out properly? Maybe the MIME type of text/
html is not correct? If I change it to text/aspx then it prompts me to
download the .axd resource file
Is there perhaps a better way to accomplish what I want to do?
-David- Hide quoted text -
- Show quoted text -
Patrice,
Thanks for the help. I guess I need to find a better way of doing
this. I have been expereimenting with creating a new Page object from
scratch. What does everyone think of this? Mabye I should try
something else? Only problem I found with this way is that I do not
have request or response objects to do a server.transfer from. I can
probably solve my problem if I could just render the contents of some
controls behind the scenes (against a valid page model) and then send
the render HTML content to the page directly.
Any thoughts?
David
Random thoughts as I'm not sure about the details of your requirements...
First of all I would not let place them pages wherever they want on the
server (to get something better manageable).
You could for example :
- create them a working directory (possibly as a GUID)
- the real pages could perhaps be stored there using also a GUID for their
name so that direct access is made difficult if not impossible, pages are
uplaoded using your own interface
- a rewriting URL module could expose those pages under a friendly name of
their choice (i.e. they don't know their real location). This module could
prevent direct access (if I remember you wanted them not being able to using
a link to their pages unless in a particular context, not sure how you
would know you are in an appropriate context ?).
A still higher level view could perhaps help as you seem to have quite
unusual requirements. Also I believe I saw once a sample that uses VS.NET to
let third party customize a web application (if this is what you are doing)
exposing an object model allowing to hook up into events.
It could be also something like Gadgets or WebParts ?
Good luck.
"Bob Jones" <go********@gmail.coma écrit dans le message de news: 11*********************@m58g2000cwm.googlegroups.c om...
On Feb 21, 3:42 am, "Patrice" <http://www.chez.com/scribe/wrote:
IMO no. This information is for the client. Im' not sure how you could
tell
the server that it has to do something on the resource before sending back
the result.
Keep in mind that the webresource stuff was done to serve "raw" content.
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171993105.593017.98...@h3g2000cwc.googlegroups.co m...
On Feb 20, 11:59 am, "Patrice" <http://www.chez.com/scribe/wrote:
This is correct but the problem is that the resource architecture
doesn't
care this is ASPX code. From a resource point of view this is just some
text. So ASP.NET doesn't compile and run this...
I don't really see an obvious way to do this with your requirements. You
could perhaps have a server side page that fetch this resource, then use
System.Net.WebClient to call the page and then return the resulting HTML
while deleting the temporary page hoping yiour requirements really needs
these kind of cumbersome architecture...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171989383.468841.92...@s48g2000cws.googlegroups.c om...
On Feb 20, 11:22 am, bruce barker <nos...@nospam.comwrote:
asp.net will not compile an aspx page in a resource, so you approach
will not work. if you just leave it in the dir, asp.net will compile
it
before returning the page.
you only trick will be deploying the code if you use a precompiled
site.
you will need to compile the site, then add the aspx file to the
compiled site dir (use a custom build step).
-- bruce (sqlwork.com)
Bob Jones wrote:
On Feb 20, 9:27 am, "Patrice" <http://www.chez.com/scribe/wrote:
It looks like to me the whole content of an ASPX page is stored
inside
a
resource ? Is this correct ? A resource just stores some data so
the
ASP.NET
engine doesn't have any idea that this is actually something you
would
like
to run (I'm surprised even it lets you serve resx files).
I'm not sure what is the overall goal but the first idea that comes
to
mind
would be to save this in an ASPX file as usual. Else elaborate on
what
you
are trying to do in case someone would have a simpler approach to
suggest...
"Bob Jones" <goodold...@gmail.coma écrit dans le message de news:
1171980219.088072.326...@v33g2000cwv.googlegroups. com...
>Here is my situation:
>I have an aspx file stored in a resource file. All of the C# code
>is
>written inline via <script runat="server"tags. Let's call this
>page
>B. I also have page A that contains some javascript code that
>calls
>window.open. I pass the resource url of page B to Page A's
>window.open
>call. Page B is then loaded and executed but none of the
>server-side
>code is rendered. If I view the source of the page, the code (and
>page
>declaration) are visible.
>How do I get this to render the C# code properly?
>Sample code:
>Assembly.cs
>[assembly: WebResourceAttribute("MyTest.MyFile.aspx", "text/html",
>PerformSubstitution = true)]
>PageA.aspx (C#)
>public string ns = "";
>protected void Page_Load(object sender, EventArgs e)
>{
>ns = Page.ClientScript.GetWebResourceUrl(GetType(),
>"MyTest.MyFile.aspx");
>}
>PageA.aspx (javascript)
><%@ Page Language="C#" AutoEventWireup="true"
>CodeFile="Default2.aspx.cs" Inherits="Default2" %>
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>"http://
>>www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
><html xmlns="http://www.w3.org/1999/xhtml" >
><head runat="server">
> <title>Untitled Page</title>
><script language="javascript" type="text/javascript">
><!--
>function Button1_onclick()
>{
>window.open(<%=ns%>, "_blank",
>"menubar=no,titlebar=no,toolbar=no,status=no") ;
>}
>// -->
></script>
></head>
><body>
><input id="Button1" type="button" value="button"
>language="javascript" onclick="return Button1_onclick()" />
></body>
></html>
>MyFile.ascx (stored in resource file)
><%@ Page Language="C#" %>
><html>
><head runat="server">
><title>MyTitle</title>
></head>
><body bgcolor="#6699cc">
><form id="form1" runat="server">
></form>
></body>
></html>
><script runat="server" type="text/C#">
>protected override void OnLoad(EventArgs e)
>{
>Response.Write("I am writing to dee page!");
>base.OnLoad(e);
>}
></script>- Hide quoted text -
- Show quoted text -
Patrice,
You are correct, I am trying to serve up an aspx page that is stored
in a resource file.
What I am trying to accomplish is to allow an aspx page or control
to
be displayed in a pop-up window when a user clicks on a hyperlink in
a
web page. The page that needs to be displayed could be stored
anywhere
on the site and should be easily editable by a novice developer (no
asp.net server controls which require writing the control without a
designer) but the pages should not be accessible to a user by typing
it in the url directly.
I was hoping I could mask this by storing a generic aspx file in a
resource file and pass in say a namespace or something that the
embedded pages c# code would then invoke and render to the page.
Is my methodology wrong? Is there a better or more common approach?
-David- Hide quoted text -
- Show quoted text -
Bruce,
I appreciate the response but what you mentioned does not solve my
problem nor does it suggest anything other than placing a static page
on the web site. I also mentioned that the c# code is inline and, to
the best of my knowledge, the page is not compiled until runtime.
Am I not correct about this?
-David- Hide quoted text -
- Show quoted text -
Is there a way to make ASp.Net render this page as an aspx page
instead of a text file? I was under the impression that since I am
getting a resource and then rendering it in the browser as html
asp.net would parse it all out properly? Maybe the MIME type of text/
html is not correct? If I change it to text/aspx then it prompts me to
download the .axd resource file
Is there perhaps a better way to accomplish what I want to do?
-David- Hide quoted text -
- Show quoted text -
Patrice,
Thanks for the help. I guess I need to find a better way of doing
this. I have been expereimenting with creating a new Page object from
scratch. What does everyone think of this? Mabye I should try
something else? Only problem I found with this way is that I do not
have request or response objects to do a server.transfer from. I can
probably solve my problem if I could just render the contents of some
controls behind the scenes (against a valid page model) and then send
the render HTML content to the page directly.
Any thoughts?
David This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Paul |
last post by:
I link to a web site from an Excel spreadsheet. The page i link to is
getCookie.asp which sets a cookie then returns back some html which opens a
new window, to the same site but a different page...
|
by: learner |
last post by:
Hi,
In a page, i have many links.
I have some functions in a global file which is included in all
linked pages.
I want to have a reference to a window which is to be opened on
clicking one link...
|
by: chris |
last post by:
how would i resize a browser window to a specific size as the page loads,
using html or javascript
|
by: w2000 |
last post by:
Greeting all,
I am studying Javascript to custom my yahoo estore,
I need to open a custom sized window in a new browser ,
I tried the following script on 3 different PCs running XP
pro. IE 6,...
|
by: wayne |
last post by:
Hey there... I'm having some problems passing url parameters with an
open.window command. I'm not terribly familiar with java script but
here is the code below.
When executed it opens the...
|
by: Tamir Khason |
last post by:
Follwing the struct:
public struct TpSomeMsgRep
{
public uint SomeId;
|
by: Richard Shewmaker |
last post by:
I've only recently returned to (trying to) doing simple JS, so this is
probably a really lame question.
I have a Web page with a series of graphics in it (window A).
Clicking on a graphic in A...
|
by: David |
last post by:
Hi All:
Here's what may be a confusing question. I have an application which
has a basic help window that is attached to a Windows application. It
uses IE objects to render html text. The user...
|
by: Tomasz J |
last post by:
Hello Developers!
A lot has been written about Java Script window.open() function and lost
session state.
But the most recent version of IE seems to handle it correctly.
But now I have an...
|
by: Nicole.Winfrey |
last post by:
Hi,
At the moment, I'm displaying the XML HTTP response text using
javascript alert (see below).
I'm trying to render XML HTTP response in a new window and the output
of the window needs to be ...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |