Click here to Skip to main content
16,018,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Sir i try like below.
XML
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>

<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" Runat="Server">
<link rel="stylesheet" href="jqtransformplugin/jqtransform.css" type="text/css" media="all" />
<script type="text/javascript" src="js/jquery.js" ></script>
<script type="text/javascript" src="jqtransformplugin/jquery.jqtransform.js" ></script>
<script language="javascript" type="text/javascript">
    $(function () {
        $('form').jqTransform({ imgPath: 'jqtransformplugin/img/' });
    });
</script>
<style type="text/css">
body{
font-family: Arial;
}
form{clear:both;}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>
     <div class="formstyle">
    <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
    </div>
    </ContentTemplate>
    </asp:UpdatePanel>
</asp:Content>

at button click i have one msg. box:
C#
ScriptManager.RegisterStartupScript(this, this.GetType(), "script", "alert('Data Save Successfully');", true);

please help me to find out a way that before and after click button i get the effect and also msg box display.
Posted
Updated 15-Mar-13 1:56am
v2
Comments
ZurdoDev 15-Mar-13 8:03am    
What do you want?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900