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
477 B

<%@ Page Language="C#" %>
<%@ Register TagPrefix="osb" Namespace="OboutInc.OboutSuperButton" Assembly="obout_SuperButton" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Obout SuperButton Example</title>
<script type="text/JavaScript">
function isActive(text)
{
var el = document.getElementById("buttonResult");
if(text.length >0)
{
el.innerHTML = "<span style='color:red;font-size:14px;'>"+text+" is active</span>";
el.style.visibility="visible";
}
else