You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
383 B

<%@ Register TagPrefix="obout" Namespace="OboutInc.Combobox" Assembly="obout_Combobox_Net" %>
<script runat="server" language="C#">
public void Page_load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
cbo1.Text = "antique";
cbo1.Value = "antique";
}
cbo1.FolderStyle = "styles/" + cbo1.Value;
}
</script>