Click here to Skip to main content
15,894,825 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to add checked items from checkboxlist to listbox Pin
vivek88612-May-12 22:51
vivek88612-May-12 22:51 
AnswerRe: How to add checked items from checkboxlist to listbox Pin
Sandeep Mewara12-May-12 23:33
mveSandeep Mewara12-May-12 23:33 
GeneralRe: How to add checked items from checkboxlist to listbox Pin
vivek88613-May-12 0:31
vivek88613-May-12 0:31 
GeneralRe: How to add checked items from checkboxlist to listbox Pin
Sandeep Mewara13-May-12 3:07
mveSandeep Mewara13-May-12 3:07 
AnswerRe: How to add checked items from checkboxlist to listbox Pin
vvashishta15-May-12 20:40
vvashishta15-May-12 20:40 
AnswerRe: How to add checked items from checkboxlist to listbox Pin
taha bahraminezhad Jooneghani3-Jun-12 3:34
taha bahraminezhad Jooneghani3-Jun-12 3:34 
Questionvideo conferrence in asp.net Pin
zezo10012-May-12 3:01
zezo10012-May-12 3:01 
AnswerRe: video conferrence in asp.net Pin
Sandeep Mewara12-May-12 4:11
mveSandeep Mewara12-May-12 4:11 
Questionhow can i embed vlc player in Asp.net Pin
appu198711-May-12 20:45
appu198711-May-12 20:45 
AnswerRe: how can i embed vlc player in Asp.net Pin
Sandeep Mewara11-May-12 22:09
mveSandeep Mewara11-May-12 22:09 
Questionmobile recharge api integration with asp.net c# Pin
Girish Vadhel10-May-12 20:52
Girish Vadhel10-May-12 20:52 
AnswerRe: mobile recharge api integration with asp.net c# Pin
Richard MacCutchan10-May-12 22:11
mveRichard MacCutchan10-May-12 22:11 
AnswerRe: mobile recharge api integration with asp.net c# Pin
Parwej Ahamad10-May-12 22:13
professionalParwej Ahamad10-May-12 22:13 
AnswerRe: mobile recharge api integration with asp.net c# Pin
Abhinav S10-May-12 22:27
Abhinav S10-May-12 22:27 
QuestionException of type 'System.OutOfMemoryException' was thrown Pin
rakeshkmr198510-May-12 19:04
rakeshkmr198510-May-12 19:04 
GeneralRe: Exception of type 'System.OutOfMemoryException' was thrown Pin
Vipin_Arora10-May-12 19:14
Vipin_Arora10-May-12 19:14 
AnswerRe: Exception of type 'System.OutOfMemoryException' was thrown Pin
Apocalypse Now10-May-12 23:15
Apocalypse Now10-May-12 23:15 
AnswerRe: Exception of type 'System.OutOfMemoryException' was thrown Pin
David Mujica11-May-12 3:29
David Mujica11-May-12 3:29 
QuestionAJAX ModalPopUpExtender Pin
Ratchman10-May-12 13:24
Ratchman10-May-12 13:24 
AnswerRe: AJAX ModalPopUpExtender Pin
Joshua Omundson11-May-12 5:50
Joshua Omundson11-May-12 5:50 
AnswerRe: AJAX ModalPopUpExtender Pin
jkirkerx11-May-12 8:16
professionaljkirkerx11-May-12 8:16 
Check your PopUpTitle CSS, sometimes the AJAX fired and worked, but the proper css was not available, to alter.

In other words, the modelopopupextender just makes a change to the css, which makes it pop up, and then changes the css back to the original parameters to hide the popup.

So change your css to show the popup, and change the css back to hide the popup, before implementing the popup extender.

If the popup extender still doesn't work after that, then your missing a extender property, which should trigger an error.

I didn't see the close button target id.
<asp:ModalPopupExtender I
     ID="MPEProphetAndLoss1" 
     runat="server" 
     PopupControlID="divProphetAndLoss1"
     TargetControlID="LinkButtonIntroductionText"
     CancelControlID = "bt_Modal_Cancel"
>

Test your css class for show and hide by altering the css
<div id="divProphetAndLoss1" runat="server" class="PopUpTitle" // <- test your css class


This should be show or hide
protected void btnIntroductionText_Click(object sender, EventArgs e)
{
MPEProphetAndLoss1.Show(); // Show or Hide
}


}
Questionasp.net deployment Pin
sc steinhayse10-May-12 10:35
sc steinhayse10-May-12 10:35 
AnswerRe: asp.net deployment Pin
R. Giskard Reventlov10-May-12 12:16
R. Giskard Reventlov10-May-12 12:16 
GeneralRe: asp.net deployment Pin
Apocalypse Now10-May-12 14:45
Apocalypse Now10-May-12 14:45 
GeneralRe: asp.net deployment Pin
sc steinhayse10-May-12 17:31
sc steinhayse10-May-12 17:31 

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.