Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Adding a base tag to your ASP code dynamically

0.00/5 (No votes)
21 Jul 2007 1  
How to dynamically add a base tag to your ASP code.

Introduction

When using relative paths in your HTML code, it is helpful to set the base tag. But that base may be different for each developer on your team, or on stage, QA, or production. Also, when making your URL optimized for search engines, your URL will map to a non-existing path. The best way to solve this is by adding the <base href="..."/> tag to the page header dynamically.

Using the code

The solution is quite simple. First, create a new class called BaseTag that has the following code:

public class BaseTag : HtmlControl
{
    public BaseTag(HttpRequest request): base("base")
    {
        base.Attributes.Add("href", 
            request.Url.Scheme + "://" + 
            request.Url.Authority + 
            request.ApplicationPath + "/");
    }
}

The key part is Url.Scheme that returns the URL scheme: such as HTTP and HTTPS. Url.Authority returns the host and port address, if one is provided. Next is the application path that is often unique to the location of the web app directory. Put them all together with the right string construct, and you get a nice well formed href for the base tag like:

http://someurl:8080/web/

Next, include the following line in the Page_Load method of your *.aspx.cs file:

protected void Page_Load(object sender, EventArgs e)
{
    this.Header.Controls.AddAt(0, new BaseTag(Request)); 
}

The end result is the <base href="http://someurl:8080/web/"/> tag.

I hope this is helpful to you.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here