Tagged Questions
7
votes
2answers
373 views
URL's not being resolved when in UserControl (ASP.NET)
If I pass the derived class testA a PlaceHolder that contains a Hyperlink, with a url that starts with
a tilde, it resolves it correctly.
However, when I pass testB
(identical apart from it ...
2
votes
2answers
118 views
Relative URL not working in System.Web.UI.UserControl
public class foo : System.Web.UI.Control
{
public foo()
{
var a = new HyperLink(){ Text="Test", NavigateUrl="~/abc.aspx"};
this.Controls.Add(a);
}
}
The above code works ...
1
vote
3answers
211 views
How do I form complete URLs from incomplete URLs found in a web page?
I can retrieve the text of a web page, let's say http://stackoverflow.com/questions with some real and made up links:
/questions
/tags
/questions?sort=votes
/questions?sort=active
...
0
votes
2answers
541 views
Background image not showing when deployed because of URL Resolve in asp.net c#
I have two themes in my .Net application, both use the same background image. Both have an images folder with this image in them, both have style sheets. One works and one doesn't but ONLY when ...