What's Differences Between .aspx And .ashx Pages
Mar 29, 2011what are the differences between .aspx and .ashx pages. I use ashx now when I need to handle a request that called from code and return with a response.
View 3 Replieswhat are the differences between .aspx and .ashx pages. I use ashx now when I need to handle a request that called from code and return with a response.
View 3 RepliesWhat are the differences between aspx and jspx? and Why should I choose aspx or jspx?
what is the best software to develop web poject with jspx?
In a basic scenario where I have a GridView with files to download and link buttons to download them, is there any benefit at all for creating a custom http handler for streaming those files as opposed to simply streaming from the event handler of the download link button?
Edit: As some suggested code reuse would favor the handler, however it's not an issue in this particular case. The handler is also faster being that it avoids the page life cycle, however this slight performance improvement is probably not worth creating a handler for in my particular situation. The only thing that comes to mind now is (assuming using the same aspx page approach) whether there is any special consideration in a situation where the GridView is inside an UpdatePanel?
Because i want concatinate that value with image filename.
View 1 RepliesHow To Redirect from httphandler(.ashx) to an (.aspx) page in the same application ?
[URL]
can some expert confirm better approach
I have an Handler.ashx file and on .aspx page load it calles the .ashx file for image reading. I am attempting to pass a session from the .aspx file to the .ashx file in order to make my query of grabing the image secure. The problem is that everytime I call a session: HttpContext.Current.Session["ID"], the value is returning null or errors saying the o so commong "Object reference not set to an instance of the object". I have tried a couple ways of grabing the session:
1.) context.Session["ID"]
2.) HttpContext.Session["ID"]
3.) HttpContext.Current.Cache["ID"]
none of them are giving me the ID session set in the .aspx page. should i be using Server.Transfer instead? is there a way to grab a session variable set in a .aspx page and called in a .ashx page?
I wrote a test page that does a bunch of busy work in a method called at page load. This process as I have it now takes around 12 seconds.
If I try to load another page while the first long running page is loading, this second page doing nothing except writing out a world, it doesn't load until the first long running page is finished.
Why is this the case? I would think IIS would be able to handle multiple concurrent connections, it seems crazy that one long running page would stop every other page in the application from loading. I must be missing something or not understand how IIS works.
I would think multiple independent requests would be spawned on different threads. Is this only the case if the requests are from different sessions entirely? Are all requests from a single session bound to a single thread?
Hey as you guys know I'm not so good at CSS. I wrote a site for a business a friend is starting using it, I've got it hosted on the web now, but all the pages but Default.aspx ignore the CSS file.
View 4 RepliesI found that i can use Response.WriteFile to include them and most of the pages work, except that the login page is not working.
View 4 RepliesI know an ASP.NET app can have as many aspx pages as you want but after hitting a certain number of them (over 100) should I consider a different design? Or, as the months/years go by do I just keep adding more and more pages to my app?
View 3 RepliesI am using a shared hosting so I can't touch IIS, but is there anyway I could do in Global.asax or web.config that would redirect links like mysite.com/folder/ to a specific page?
View 1 RepliesI am developing a web-based Pokemon Online game. Since it is online, I would like to optimize it to run as quickly possible. I've installed Firebug and Page Speed minifying my HTML output. I'm also using VS2008, ASP.NET 3.5, AJAX, and IIS 7.5; along with URL-Rewriting. I want to minify my HTML, JavaScript, and CSS. Optimally, I'd like the minifying process to happen at compile time. I've spend hours looking online but couldn't find a decent solution,
View 3 RepliesI've recently launched my page but the aspx files are not reading the cs pages. For instance, my login page has c# redirecting users based on roles, but it just ignored the c# and goes to default.aspx. Everything works perfect in the development environment..
View 14 Replieshow i can hide .aspx from all my pages in my project
View 2 RepliesI had an ASP.NET 1.1 application that I converted to 2.0. I deployed the application under IIS 7 on Windows 2008 Server. I can browse images and static html pages but I can't browse .aspx pages. When I try to run any .aspx page, my browser says "Internet Explorer cannot display the webpage". My application pool is set to .NET framework 2.0 with Integraded in Managed Pipeline mode.
View 5 RepliesHow do i get the pretty URL with an ASPX pages. I have listed a couple links below and their associated print page url. As you can see it resembles the Class instantiation method of declaring object but is used for a webpage with its extension.
I was wondering if this method can be used or if this is a URL rewrite to mask all the querystrings and sub directories being referenced. I remember doing stuff like this when i was working on a UNIX system using the .htaccess file to mask effective query
string being shown. I believe they called it a Clean URL, i maybe wrong as it has been well over 8 years since i dealt with the Unix .htaccess file and massaging urls with it.
For instance, look at the MSDN site pages:
http://msdn.microsoft.com/en-us/library/system.servicemodel.actionnotsupportedexception.aspx
Now when you want to print it:
http://msdn.microsoft.com/en-us/library/system.servicemodel.actionnotsupportedexception(printer).aspx
Now you select the same page but choose a different framework than its birth:
http://msdn.microsoft.com/en-us/library/system.servicemodel.actionnotsupportedexception(VS.100).aspx
and the print URL:http://msdn.microsoft.com/en-us/library/system.servicemodel.actionnotsupportedexception(VS.100,printer).aspx
As you can see they are not visually passing query strings but more like Class parameters. Is this just a simple URL rewrite after the page is loaded so the user doesnt see the query string information?
Quick question... Is it possible to programmatically create and .aspx file on the fly, complete with Master page and user controls?
If it is, can anyone point me in the direction of how this can be done?
I'm wondering if you can use a lightbox with aspx pages? For my project, i'm trying to make some kind of search tool in that lightbox. On my default page , you have a img link that opens a lightbox (with an aspx page) In that lightbox, when you click a button (asp button), the page renders like a normal full browser page with the same content. The page should stay in that lightbox and rendering the results in a listbox. Is this possible? Or is this the wrong way?
View 2 RepliesI need to create a code that reads the QueryString and set a value on the Session and on the end of the page I need to clear the Session.
How can I make a code like this to run on all .aspx pages?
How to Dispaly the username on all aspx pages....?
am thinking that by using "session object" we can able to do this...bt am not sure
Can any send the code or links
I am posting this here after not getting any responses on StackOverflow.
Last night I upgraded my MVC2 project to MVC3 RC. I followed all the instructions in the release notes and upon running my project (With the Index action of the home controller coming up by default) the following exception occurred:
"Exception Details: System.InvalidOperationException: The view at '~/Views/Home/Index.aspx' must derive from ViewPage, ViewPage<TModel>, ViewUserControl, or ViewUserControl<TModel>."
All of my coding so far has been in areas, and I have not touched the Home/Index view in any significant way, and it worked last night prior to the upgrade. For reference, my view has the following code:
[Code]....
As you can see, I am inheriting from ViewPage even though it claims I am not. The HomeController.Index() view is exactly as what gets installed via a new MVC2 project. I did get pointed to the post here, and upon seeing that I tried a few things. First I tried to manually set my view engines in Global.asax like so:
[Code]....
This doesn't change anything, I still get the exception (even commenting out the RazorViewEngine call). Next I tried to go into the Home controller and did:
[Code]....
And this didn't work either. As of right now I"m at a standstill, as I can't run any of my pages currently. I use source control, so I can revert but I do want to take advantage of things in MVC3.
Whats the best way to systematically debug the aspx pages ( not C# or Vb.NET managed code). Sometimes a small syntax or semantic error in aspx page displays " Internal server error or something similar" and I had to comment the last changes step by step to find out the error.
Is there any other systematic way of doing this ?
i m facing problem in converting .html pages to .aspx using c#secnario isi got one index.html pagei have to convert index.html into .aspx pages and that to in four pastop part as a.aspxmiddle part as b.aspxbottom part as c.aspxand then in d.aspx i have to combine all the three parts and call them in d.aspx...
View 7 Repliesis there any alternative to use regions in ASPX pages?
View 6 RepliesI am looking for an tried-and-tested approach to share .ASPX webpages across websites. E.g. I have a generic error page which I would like to share between x.com and y.com sites.
View 3 Replies