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

<%@ Page Language="C#" AutoEventWireup="true" Trace="false" validateRequest="false" %>
<%@ Register TagPrefix="osb" Namespace="OboutInc.OboutSuperButton" Assembly="obout_SuperButton" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Obout SuperButton Example</title>
<script language="C#" runat="server">
void Page_Load(object sender, EventArgs e)
{
Message.Text = "";
}
void CommandBtn_Click(Object sender, CommandEventArgs e)
{
Message.Text = "Command name: <span style='color:red'>"+e.CommandName+"</span>, Command argument: <span style='color:red'>"+(String)e.CommandArgument+"</span>";