How do I render an image border in ASP.net?

I've got a "Show Graph" button that renders an image of a graph. It's not dynamic, i.e., you choose the graph from a drop-down menu and the image is delivered to the page. I'd like to put a border around it. Here's the relevant code:

protected void ShowGraph_ServerClick(Object sender, EventArgs e)
{
Graph.Src = "images/moneyGraph" + Currency.SelectedIndex.ToString() + ".jpg";
Graph.Visible = true;

}

Is there an ASP.net command that I can use to render a border?
 
Back
Top