File: D:/HostingSpaces/PHerau/toptennisteam.be/wwwroot/admin/Containers/dropdownactions.ascx
<%@ Control Language="vb" AutoEventWireup="false" Inherits="DotNetNuke.UI.Containers.DropDownActions" CodeFile="DropDownActions.ascx.vb" %>
<script>
function cmdGo_OnClick(o)
{
if (o.selectedIndex > -1)
{
var sVal = dnn.getVar('__dnn_CSAction_' + o.id + '_' + o.options[o.selectedIndex].value);
if (sVal != null)
{
var bRet = false;
eval('var bRet = ' + sVal);
if (bRet == false)
return false;
}
}
return true;
}
</script>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td nowrap>
<span id="spActions" runat="server"/>
<asp:ImageButton id="cmdGo" runat="server" ImageUrl="~/images/fwd.gif" AlternateText="Go" ToolTip="Go"></asp:ImageButton>
</td>
</tr>
</table>