add new priority
<%
if (ds.Tables[0].Rows.Count > 0)
{
SortableHtmlTable.create_from_dataset(
Response, ds, "edit_priority.aspx?id=", "delete_priority.aspx?id=", false);
}
else
{
Response.Write ("No priorities in the database.");
}
%>
<% Response.Write(Application["custom_footer"]); %>