更新パネル内にドロップダウンがあります。選択したインデックス変更イベントで、c# または javascript を使用して .js ファイルを実行する必要があります。これを行うにはどうすればよいですか?
<asp:UpdatePanel ID="UP_Social_Ddl" runat="server">
<ContentTemplate>
<div class="styled-select">
<asp:Label runat="server"
ID="Label2"
Font-Size="Small"
ToolTip="Social : 'ON' will post your activity on this page to your FaceBook Wall." Text="Social :"
Style="vertical-align: bottom;" />
<asp:DropDownList
ID="ddlSocialSwitch"
runat="server"
AutoPostBack="true"
Style="vertical-align: middle;"
ToolTip="Social : ON will post your activity on this page to your FaceBook Wall."
OnSelectedIndexChanged="ddlSocialSwitch_SelectedIndexChanged">
</asp:DropDownList>
<a valign="bottom" onclick="logout_fb" href="#" id="auth-logoutlink"><img valign="bottom" src="facebookLogOutButton.png"/></a>
<asp:Label ID="lbl" Visible="false" runat="server"></asp:Label>
</div>
</ContentTemplate>