Tagged Questions
The webforms-routing tag has no wiki summary.
2
votes
2answers
296 views
Routing to an anchor on another page
I am using Web Forms Routing in ASP.NET 4 and I am trying to route to a specific location on a page. On that page I have an element like <div id="3"> and I'd like to jump to this anchor from ...
2
votes
3answers
328 views
ASP.NET 4.0 webforms routing
I have an existing site that I'd like to convert to use routing, and after reading Scott Guthrie's post here, I built a working sample that works for most circumstances. However, since not all of ...
1
vote
1answer
322 views
ASP.NET WebForms URLRouting - All Routes Receiving 404
All routes within my ASP.NET URL Routing web application are receiving a 404. However, the actual pages that exist are showing up correctly. I'm using IIS7. Any ideas?
1
vote
1answer
881 views
URL Routing and IIS6. How can I test it?
I can't seem to understand how I can find out what is erroring out when I implement URL Routing on IIS6 and Webforms.
I continue to get 404 errors when I try to access a route.
I add the ISAPI ...
0
votes
1answer
28 views
Routing error mixing Web Forms and MVC
I am working on a Web Forms Web Application with mixed in MVC. I have followed the instructions from this page http://www.packtpub.com/article/mixing-aspnet-webforms-and-aspnet-mvc and it works fine ...
0
votes
2answers
52 views
Need Suggestions for ASP.Net or IIS Request URL Mangling
Environment:
Server 2008
IIS 7, integrated mode
.Net 4
ASP.NET WebForms Routing (which uses the same .dll as MVC routing, though I'm not sure which version)
Cookieless sessions (session ID travels ...
0
votes
0answers
81 views
ASP.NET 4.0 webforms routing within master page
I just want to asked if there's a workaround in url routing using masterpage. I put the links in my masterpage (i.e. first link is a href="Bookstore/CSS" and the other link is a href="tools/toolx") if ...
0
votes
0answers
105 views
RouteMagic Redirect in webforms
I am using ReouteMagic to redirect old routes to new ones as mentioned by Phil Haack here: http://haacked.com/archive/2011/02/02/redirecting-routes-to-maintain-persistent-urls.aspx
using ...
0
votes
2answers
83 views
ASP.NET How do you stop the underlying Web Form in a routing application from being accessed directly?
Imagine a Web Forms application with routing.
A clean page name like:
http://www.mywebsite.com/home
Might have an underlying of URL of:
http://www.mywebsite.com/page.aspx?id=3
If a user enters ...
0
votes
3answers
1k views
ASP.NET HyperLink instead of LinkButton - how to avoid border around image?
I have an ASP.NET web site which contains some ImageButton controls that cause postbacks used to filter a list of products to certain groups of products.
The ImageButton was created something like ...
0
votes
1answer
206 views
After throwing a Security Exception, redirect to Login page
I'm using WebForms and Asp.Net Routing.
When trying to implement security on a members folder, I'm following the directions here :
...
0
votes
2answers
64 views
what is the easiest way to implement page routing into asp.net 3.5
I need to know the easiest way to implement asp.net 3.5 URL routing as I can't upgrade my solution now to asp.net 4.
0
votes
1answer
212 views
Does Security Trimming work with Web Forms Routing?
In my web.config I have configured a SiteMapProvider with securityTrimmingEnabled="true" and on my main master page is an asp:Menu control bound to an asp:SiteMapDataSource. In addition I have ...
0
votes
2answers
2k views
Asp.net 3.5 Sp1 Sub-Domain routing?
I was wondering is there is a way to introduce sub-domains in Asp.net 3.5 routing
All i found as this http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx
But i was looking for ...