How to use dropshadow control in asp.net?

aswinialuri-19361
Posted by aswinialuri-19361 under ASP.NET AJAX category on | Points: 40 | Views : 1276
In aspx code:
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Panel ID="Panel2" runat="server" Height="113px" BackColor="cyan" Width="633px">
<asp:TextBox ID="TextBox2" runat="server"
style="margin-left: 192px; margin-top: 23px"></asp:TextBox>
<asp:Label ID="Label1" runat="server" style="margin-left: 62px" Width="70px"></asp:Label>
<br />
<asp:Button ID="Button2" runat="server" onclick="Button2_Click"
style="margin-left: 230px" Text="submit" />
<br />
</asp:Panel>

<asp:DropShadowExtender ID="Panel2_DropShadowExtender" runat="server"
Enabled="True" TargetControlID="Panel2">
</asp:DropShadowExtender>
</div>

</form>
</body>

In.aspx.cs ode:
 protected void Button2_Click(object sender, EventArgs e)
{
Label1.Text = "you enter text is" + TextBox2.Text;
}

I hope it will useful to you

Comments or Responses

Login to post response