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.
OboutSuite/Show/aspnet_quickscrollcustomize...

16 lines
495 B

<%@ Register TagPrefix="obshow" Namespace="OboutInc.Show" Assembly="obout_Show_Net" %>
<script language="C#" runat="server">
void Page_Load(object sender, EventArgs e) {
if (!IsPostBack)
{
ddlScrollDirection.SelectedIndex = 0;
Show1.ScrollDirection = ScrollDirection.Left;
}
}
private void ChangeScrollDirection(object sender, System.EventArgs e)
{
Show1.ScrollDirection = (ScrollDirection)Enum.Parse(typeof(ScrollDirection), ddlScrollDirection.SelectedValue.ToString());