Click here to Skip to main content
15,884,099 members
Home / Discussions / C#
   

C#

 
AnswerRe: Thread with Message Pump Pin
Eddy Vluggen24-Jan-13 2:49
professionalEddy Vluggen24-Jan-13 2:49 
AnswerRe: Thread with Message Pump Pin
Paulo Zemek24-Jan-13 3:49
mvaPaulo Zemek24-Jan-13 3:49 
AnswerRe: Thread with Message Pump Pin
BobJanova24-Jan-13 4:22
BobJanova24-Jan-13 4:22 
QuestionEnding session and back button after logout Pin
sahavasiwebwonders24-Jan-13 0:24
sahavasiwebwonders24-Jan-13 0:24 
AnswerRe: Ending session and back button after logout Pin
Simon_Whale24-Jan-13 0:36
Simon_Whale24-Jan-13 0:36 
GeneralRe: Ending session and back button after logout Pin
sahavasiwebwonders24-Jan-13 0:41
sahavasiwebwonders24-Jan-13 0:41 
AnswerRe: Ending session and back button after logout Pin
BobJanova24-Jan-13 1:28
BobJanova24-Jan-13 1:28 
GeneralRe: Ending session and back button after logout Pin
sahavasiwebwonders24-Jan-13 18:59
sahavasiwebwonders24-Jan-13 18:59 
Hey this problem is solved as I use:
XML
<META Http-Equiv="Cache-Control" Content="no-cache">
<META Http-Equiv="Pragma" Content="no-cache">
<META Http-Equiv="Expires" Content="0">


But today another problem came..

I have two links in my home page namely Register & Login. They are kept in a panel control and when I press enter from login popup it should be login. Till now every thing works.
When clicking on them(links) individually two modalpopups shown. When I press esc button they should be closed. But it is not working in a panel if I give BehaviorID to popup. Can any one help me?
Here is the asp.net code....
XML
<script type="text/javascript">
    //closes the popup by pressing the esc button on the keyboard
    document.onkeyup = Escape;
    function Escape()
    {
        var KeyID = event.keyCode;
        if (KeyID == 27)
         {
             if ($find("MPEregisterescclose"))
             {
                $find("MPEregisterescclose").hide();
             }
             else if ($find("MPEloginescclose"))
             {
                $find("MPEloginescclose").hide();
             }
         }
    }
</script>

QuestionTally Integration Pin
Atul Ankush Bhabal23-Jan-13 22:38
Atul Ankush Bhabal23-Jan-13 22:38 
AnswerRe: Tally Integration Pin
Pete O'Hanlon23-Jan-13 22:43
mvePete O'Hanlon23-Jan-13 22:43 
QuestionHow check if a record exists before running the code to delete the record? Pin
Member 964160223-Jan-13 22:37
Member 964160223-Jan-13 22:37 
AnswerRe: How check if a record exists before running the code to delete the record? Pin
dan!sh 23-Jan-13 22:57
professional dan!sh 23-Jan-13 22:57 
AnswerRe: How check if a record exists before running the code to delete the record? Pin
Richard MacCutchan23-Jan-13 23:01
mveRichard MacCutchan23-Jan-13 23:01 
AnswerRe: How check if a record exists before running the code to delete the record? Pin
Eddy Vluggen24-Jan-13 0:43
professionalEddy Vluggen24-Jan-13 0:43 
AnswerRe: How check if a record exists before running the code to delete the record? Pin
V.24-Jan-13 1:57
professionalV.24-Jan-13 1:57 
AnswerRe: How check if a record exists before running the code to delete the record? Pin
PIEBALDconsult24-Jan-13 4:40
mvePIEBALDconsult24-Jan-13 4:40 
AnswerRe: How check if a record exists before running the code to delete the record? Pin
pt140125-Jan-13 9:15
pt140125-Jan-13 9:15 
Questionneed the project code in c# Pin
Member 978198223-Jan-13 21:58
Member 978198223-Jan-13 21:58 
GeneralRe: need the project code in c# Pin
PIEBALDconsult23-Jan-13 22:01
mvePIEBALDconsult23-Jan-13 22:01 
AnswerRe: need the project code in c# Pin
Pete O'Hanlon23-Jan-13 22:18
mvePete O'Hanlon23-Jan-13 22:18 
AnswerRe: need the project code in c# Pin
pt140125-Jan-13 9:16
pt140125-Jan-13 9:16 
QuestionExasperated by MSMQ Pin
Ger Hayden23-Jan-13 21:52
Ger Hayden23-Jan-13 21:52 
AnswerRe: Exasperated by MSMQ Pin
Abhinav S23-Jan-13 22:34
Abhinav S23-Jan-13 22:34 
GeneralRe: Exasperated by MSMQ Pin
Ger Hayden24-Jan-13 2:51
Ger Hayden24-Jan-13 2:51 
GeneralRe: Exasperated by MSMQ Pin
Ger Hayden26-Jan-13 0:45
Ger Hayden26-Jan-13 0:45 

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.