Search

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

Matching Posts

  • Re: Hide javascript codes

    There isn't any way to hide JavaScript from client browser. Cheers Bhavesh
    Posted to Client Side Web Development (Forum) by lad.bhavesh on 7/18/2008
  • Re: postback

    Probably you might not have put the above window.onload script inside Ajax panel. Try to put the JavaScript in Ajax panel in which your textbox resides. Cheers Bhavesh
    Posted to Client Side Web Development (Forum) by lad.bhavesh on 7/18/2008
  • Re: Killing Session.SessionID

    I believe if you are using ASP.NET 1.1, session.abandon will not clear old session id. It will use existing id only to create new session. if you are using ASP.NET 2.0, session.abandon will clear old session id and generate new session id. Thanks Bhavesh
    Posted to State Management (Forum) by lad.bhavesh on 7/2/2008
  • Re: Multiple users cause errors

    I am afraid that you might be using static/application variables in your project. These variables are shared accross application, not session. Check the logic which handles the item insertion into database and drop down. Login with 2 diff. users in the application on your local machine and see what is happening. Cheers Bhavesh
    Posted to Web Forms (Forum) by lad.bhavesh on 6/30/2008
  • Re: Session Problem

    Try to use cookieless session. This will help you.
    Posted to Web Forms (Forum) by lad.bhavesh on 6/26/2008
  • Re: POSTBACK Problem

    If JavaScript is disabled, then anyway asp.net's autopostback will not work. Because this feature is using JavaScript only Thanks Bhavesh
    Posted to Web Forms (Forum) by lad.bhavesh on 6/19/2008
  • Re: POSTBACK Problem

    You can try following following approach. 1. Make dropdown autopostback property to false. 2. in Page_Load of screen, add attirbute to the dropdown using the code dropdown1.attributes.add("onchange", "JavaScript:doConditionalPostBack()"); 3. Write a JavaScript function named doConditionalPostBack() place logic as below in this function if(document.all('dropdown1').value=='1') { __doPostBack('dropdown1',''); } Thus above logic will do conditional
    Posted to Web Forms (Forum) by lad.bhavesh on 6/19/2008
  • Re: Losing Session after redirect.

    It seems that CompressZipFiles method is deleting or modifying somthing into your application directory. when file is deleted, application will definately be restarted. In your case when you call CompressZipFiles function, session is termiated. but it takes full page life cycle to clear out all session data. Thanks Bhavesh
    Posted to State Management (Forum) by lad.bhavesh on 6/17/2008
  • Re: Session expired

    Try to increase session timeout in IIS. By default it is 20 mins
    Posted to State Management (Forum) by lad.bhavesh on 5/27/2008
  • Re: COM interop and .NET .Version mismatch

    I think this is a bug with .NET framework. Because for making an COM to use .NET 1.1 i have to follow the steps below 1. Uninstall the COM interop 2. Uninstall .NET 2.0 and .NET 1.1 framework from the machine 3. Install .NET 1.1 framework. 4. Install COM interop. 5. Use the asp application which uses this COM application. Here it will user 1.1 6. Install .NET 2.0. Now it is binding correctly. This is a silly method for achieving this:(
    Posted to Web Forms (Forum) by lad.bhavesh on 5/22/2008
Page 1 of 11 (106 items) 1 2 3 4 5 Next > ... Last ยป