473,387 Members | 1,597 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

URGENT: window.open does not render server-side code when aspx file pulled from a resource file

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>

Feb 20 '07 #1
13 3497
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>
Feb 20 '07 #2
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

Feb 20 '07 #3
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>

Feb 20 '07 #4
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

Feb 20 '07 #5
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
Feb 20 '07 #6
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

Feb 20 '07 #7
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
Feb 20 '07 #8
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

Feb 20 '07 #9
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

Feb 20 '07 #10
>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

Feb 20 '07 #11
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
Feb 21 '07 #12
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

Feb 21 '07 #13
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
Feb 21 '07 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
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...
2
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...
25
by: chris | last post by:
how would i resize a browser window to a specific size as the page loads, using html or javascript
3
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,...
29
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...
28
by: Tamir Khason | last post by:
Follwing the struct: public struct TpSomeMsgRep { public uint SomeId;
13
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...
2
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...
3
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...
2
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 ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.