Search

You searched for the word(s): userid:773277

Matching Posts

  • Re: Sessions in web application

    Hi, You are refreshing the iframe resource every 5min that dosen't mean you are creating new session for each request. You are extending the session eachtime you request the server. Session object get created on server and its refrence resides in your browser in terms of cookies. if you want to expire the session on click of browser close, you need to write down java script that will request server page which will clear session. Satalaj
    Posted to State Management (Forum) by satalaj on 11/27/2009
  • Re: Copy web site under web directory problem

    Hi, If you are facing problem to uplad your site using VS 2008, you can try other tools like opensource FileZilla. http://filezilla-project.org/download.php Satalaj
    Posted to Getting Started (Forum) by satalaj on 11/27/2009
  • Re: problem with image buttons

    Hi, Is it specific to your application hosted on web or occuring for all appications hosted on that iis ? Satalaj
    Posted to Getting Started (Forum) by satalaj on 11/27/2009
  • Ajax exception handling

    Hi, How simply I can stop unhandled exceptions handled by ajax ? <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" OnAsyncPostBackError="ScriptManager1_AsyncPostBackError" AsyncPostBackErrorMessage="this is test async postback error message" /> <div> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Button ID="Button1"
  • Re: problem with image buttons

    Hi, Are those image buttons third party Image button control ? Can you paste your error and code snippet here ? Satalaj
    Posted to Getting Started (Forum) by satalaj on 11/27/2009
  • Re: Sessions in web application

    Hi, You need to write down a javascript in tricky way. e.g. function doUnload() { if (window.event.clientX < 0 && window.event.clientY < 0) { var img = new Image(); img.src = " sessionKill.aspx " ; alert( ' called ' ); } } ... <body onunload="doUnload()"> onunload event we are chaking position of window. Here when image instance starts requestig the page SessionKill.aspx, you can clear your session by simple putting Session.Clear() in page load event
    Posted to State Management (Forum) by satalaj on 11/27/2009
  • Re: Redirect problem

    Hi, you need to open your IIS and make your root virtual directory as an Application by hitting Create Application button. Satalaj.
    Posted to Security (Forum) by satalaj on 11/27/2009
  • Re: scrapbook

    Hi, You need to learn ASP.net and MS SQL server database you can refer these videos and tutorials http://www.asp.net/learn/ or create moderated community for your deparmental students on Orkut.com. Satalaj
    Posted to Free For All (Forum) by satalaj on 11/27/2009
  • Re: Ajax exception handling

    Hi, Thanks for this code, Can you tell me where to put this code I added it in <script> </script> tag it says sys. not found in status bar of IE8 ? Thanks, Satalaj
  • Re: Ajax exception handling

    ok, I added this script to my master page and it blocked all unhandled exceptions. <script type="text/javascript" language="javascript"> Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler); var divElem = 'AlertDiv'; var messageElem = 'UpdatePanelMessage'; function ClearErrorState() { $get(messageElem).innerHTML = ''; } function EndRequestHandler(sender, args) { if (args.get_error() != null) { var errorName = args.get_error
Page 1 of 152 (1517 items) 1 2 3 4 5 Next > ... Last »