tags:

views:

51

answers:

2

Hi,How can i bring up my messages in a pop up window with asp.net-C#? im cool with javascript ! Is there any idea related with c#?

+1  A: 

Take a look at AjaxControlToolkit's PopupControl

A great explaination of how to implement it can be found here.

BG100
+1  A: 

you can make use of Ajax-> popUpControl

<ajaxToolkit:PopupControlExtender ID="PopEx" runat="server"
    TargetControlID="DateTextBox"
    PopupControlID="Panel1"
    Position="Bottom" />

the contents inside the "panel1"(Panel) will popup. for more info http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/PopupControl/PopupControl.aspx

stacknewbee