473,569 Members | 3,009 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PageParser.GetC ompiledPageInst ance


I am working with a custom handler factory that serves aspx pages
based on url.

When this is called, it compiles the page based on the url that the
application pool uses to serve up the page. Is there a way to "re-
compile" or change the underlying .aspx page displayed when calling
this method for a specified url?

So is the only way to change the layout to restart the webapp or touch
the web.config which are not viable options.

This is a pretty tricky problem, and there may not be a solution, but
any insight into the process would be cool.

My current understanding is this

1st Request
Request (To Url X) --Handler Factory --GetCompiledPage Instance --
... --page is compiled --page events --page to client
2nd Request (To Url X) --Handler Factory --GetCompiledPage Instance
--... --page events
Jun 27 '08 #1
2 3458
not sure what you are trying to do.

GetCompiledPage Instance uses the physical path to the aspx file to determine
if the page needs to be compiled and loaded into memory, or if its already
loaded. it has a file dependency, so that a file change will trigger a
recompile. once a page is loaded in memory it can be unloaded without a
appdomain recycle. if you change the page code, then the recompile is
triggered.

it sounds like you may be wanting to do url remapping which has nothing to
do with GetCompiledPage Instance.

-- bruce (sqlwork.com)
"IanL" wrote:
>
I am working with a custom handler factory that serves aspx pages
based on url.

When this is called, it compiles the page based on the url that the
application pool uses to serve up the page. Is there a way to "re-
compile" or change the underlying .aspx page displayed when calling
this method for a specified url?

So is the only way to change the layout to restart the webapp or touch
the web.config which are not viable options.

This is a pretty tricky problem, and there may not be a solution, but
any insight into the process would be cool.

My current understanding is this

1st Request
Request (To Url X) --Handler Factory --GetCompiledPage Instance --
... --page is compiled --page events --page to client

2nd Request (To Url X) --Handler Factory --GetCompiledPage Instance
--... --page events
Jun 27 '08 #2
The implementation I am working on is kind of a hack, but it's the way
it is. It is being used for rewriting, but the user has the ability to
switch which .aspx pages are used for a url. I have solution to
rewrite this but... I was wondering if there is a band-aid besides,
recycling, and possibly touching the .aspx file?
Jun 27 '08 #3

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

Similar topics

0
1119
by: Ralfs | last post by:
Hi, does anyone know how to use this method: GetCompiledPageInstance(string, string, HttpContext) Regardless what I try I get exception that some "path" is Null. I guess that this path is temporary folder for compiled ASPX pages with funny numeric names, when debugging ASPX page one can see these names in output window. I tried to modify...
4
1400
by: Joe Spooner | last post by:
Hello, This may seem very obvious to someone else, but I'm at a loss for an answer to this problem. I have written an HttpHandler that opens up an html file and returns a string. This works great, but what if I have a file that is .aspx? I realize that I'm always going to get just straight text/string as my output, but I don't know what...
4
1964
by: Hari Koduru | last post by:
Hi All, I am getting the following exception in an ASP.NET application. Exception Details: System.InvalidOperationException: Application is restarting. I have been to the following Support page
1
3257
by: Bartosz Krzywicki | last post by:
I have the problem with Session object witch is null, when I implement IHttpHandlerFactory. Implementing IRequiresSessionState interface doesn't help. My code is like this: class MyController : IHttpHandlerFactory, System.Web.SessionState.IRequiresSessionState { public virtual IHttpHandler GetHandler (HttpContext context, string requestType,...
2
2166
by: Misha Bergal | last post by:
I want to make my own PageParser, to implement some functionality currently missing from standard one, i.e.: * Code blocks which are marked with % in first line % foreach( int c in ... ) % { % }
1
1314
by: Patrick | last post by:
Hi you all, I'm facing a litle problem with a custom httpHandler for ASP.Net. The application will be precompiled for deployment, so I won't have any .aspx files which contain code or anything else. BUT the user can/may create such files (dynamically - filebased CMS), which should be executed then. So, my question is: Can I get a...
3
1630
by: Martin | last post by:
Hi, I have a number of documents stored on my web server and these documents should not be servered to anybody unless the user is both authenticated and authorized. This authentication and authorization comes from a custom database. To stop users simply requesting the documents directly I have written a http handler to intercept requests...
5
1370
by: John H Clark | last post by:
I am building an IHttpHandlerFactory to process all requests to folders in my site. When an attempt to access internal folders is detected the request is rerouted to an error page. All other attempts are processed using return PageParser.GetCompiledPageInstance(url, pathTranslated, context);
0
918
by: Paresh | last post by:
Hi All, I am using ASP.net 1.1. I have used HttpHandler for UrlRewriting for this I have used GetCompliedPageInstance method. Now because of this my caching logic is not working. Scenario:
0
7619
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7983
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5514
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5228
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3662
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2118
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1229
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
950
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.