Click here to Skip to main content
15,923,910 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionpaypal integration Pin
RajeevKumarSharma18-Mar-08 21:36
RajeevKumarSharma18-Mar-08 21:36 
GeneralRe: paypal integration Pin
Christian Graus18-Mar-08 22:29
protectorChristian Graus18-Mar-08 22:29 
GeneralRe: paypal integration Pin
rahul.net1118-Mar-08 22:43
rahul.net1118-Mar-08 22:43 
GeneralRe: paypal integration Pin
RajeevKumarSharma19-Mar-08 20:49
RajeevKumarSharma19-Mar-08 20:49 
QuestionDialogue box Pin
indian14318-Mar-08 21:23
indian14318-Mar-08 21:23 
GeneralRe: Dialogue box Pin
N a v a n e e t h18-Mar-08 22:20
N a v a n e e t h18-Mar-08 22:20 
QuestionRe: Dialogue box Pin
indian14318-Mar-08 22:59
indian14318-Mar-08 22:59 
GeneralRe: Dialogue box Pin
Laddie18-Mar-08 23:11
Laddie18-Mar-08 23:11 
You can do it in a number of ways

1) use a div and javascript to do this.
<div id="test" style="visibility:hidden;">
Your content that need to be shown as a dig box
</div>

function showDialog()
{
document.getElementById("test").style.visibility = visible;
document.getElementById("test").style.top = event.clientY + "px";
document.getElementById("test").style.left = event.clientX + "px";
}

similarrly write the functiont o hide it by setting the visibility to hidden.


2) If you are using Ajax use the model popup extender that is comming with the ajax control tool kit.

demo is here
http://asp.net/AJAX/AjaxControlToolkit/Samples/ModalPopup/ModalPopup.aspx

Thanks
Laddie

Kindly rate if the answer was helpful
QuestionRe: Dialogue box Pin
indian14318-Mar-08 23:23
indian14318-Mar-08 23:23 
GeneralRe: Dialogue box Pin
Laddie18-Mar-08 23:27
Laddie18-Mar-08 23:27 
QuestionRe: Dialogue box Pin
indian14319-Mar-08 17:47
indian14319-Mar-08 17:47 
GeneralRe: Dialogue box Pin
Christian Graus18-Mar-08 23:41
protectorChristian Graus18-Mar-08 23:41 
GeneralRe: Dialogue box Pin
indian14320-Mar-08 10:01
indian14320-Mar-08 10:01 
QuestionBind dataset to OWC pivot table Pin
Kavitha Shetty18-Mar-08 21:16
Kavitha Shetty18-Mar-08 21:16 
Generalfckeditor line spacing Pin
meghamaharshi18-Mar-08 21:11
meghamaharshi18-Mar-08 21:11 
GeneralAdding row from datagrid to another datagrid in asp.net using C#.Net Pin
attalurisubbu18-Mar-08 21:00
attalurisubbu18-Mar-08 21:00 
GeneralRe: Adding row from datagrid to another datagrid in asp.net using C#.Net Pin
N a v a n e e t h18-Mar-08 21:19
N a v a n e e t h18-Mar-08 21:19 
Generalquestion about BLL and DAL and UI Pin
uglyeyes18-Mar-08 20:47
uglyeyes18-Mar-08 20:47 
GeneralRe: question about BLL and DAL and UI Pin
N a v a n e e t h18-Mar-08 21:00
N a v a n e e t h18-Mar-08 21:00 
GeneralMsgBox In Web Applications Pin
Member 471741218-Mar-08 20:29
Member 471741218-Mar-08 20:29 
GeneralRe: MsgBox In Web Applications Pin
Christian Graus18-Mar-08 20:30
protectorChristian Graus18-Mar-08 20:30 
GeneralRe: MsgBox In Web Applications Pin
Member 471741218-Mar-08 23:15
Member 471741218-Mar-08 23:15 
GeneralRe: MsgBox In Web Applications Pin
Christian Graus18-Mar-08 23:54
protectorChristian Graus18-Mar-08 23:54 
GeneralRe: MsgBox In Web Applications Pin
Laddie18-Mar-08 22:33
Laddie18-Mar-08 22:33 
GeneralRe: MsgBox In Web Applications Pin
Member 471741219-Mar-08 22:34
Member 471741219-Mar-08 22:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.