I'm using a rad button to ask the user if they want to cancel a request. See code below
Is there a way to incorporate a comments section that will allow users to say why they want to cancel their request ?
Any help would be appreciated
<script type="text/javascript">
function OnClientClicked(button, args) {
if (window.confirm("Are You Sure You Want to Cancel This Request?")) {
button.set_autoPostBack(true);
}
else {
button.set_autoPostBack(false);
}
}
</script>
<telerik:RadButton ID="b2" runat="server" ButtonType="LinkButton"
Font-Names="Verdana" Font-Size="Small" Height="30" Skin="Windows7"
Text="Cancel Request" OnClick="b2_Click" OnClientClicked="OnClientClicked">
<Icon PrimaryIconCssClass="rbRemove" PrimaryIconLeft="7" PrimaryIconTop="7" />
</telerik:RadButton>