Search

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

Matching Posts

  • Re: Forcing To Re-Login Every time

    Hi, Try something like this if (loginsuccessfull() ) //you check that the username and password are correct { Response.Cookies[ "Auth_Cookie" ].Value = username; //variable that hold the username Response.Cookies["FYF_FullName"].Expires = -1; FormsAuthentication.RedirectFromLoginPage(username, false ); } else Response.Write( "<script>alert('Bad Login');</script>" );
    Posted to Getting Started (Forum) by romfeo on 1/16/2006
  • Re: Wait while loading

    Hi, Thanks for your reply! 1 million records are not just much are stupid much, but in this project I dont have an option (nt a technical issue though)
    Posted to Data Presentation Controls (Forum) by romfeo on 1/11/2006
  • Re: how to block refresh in web page

    It depends on what you want to do. Maybe you should have a look on caching ( http://www.asp.net/QuickStart/aspnet/doc/caching/default.aspx ).
    Posted to Getting Started (Forum) by romfeo on 1/11/2006
  • Re: Forcing To Re-Login Every time

    Hi. First and most important: If you handle sensitive personal data (like credit card numbers etc) you should really consider using SSL encryption in your pages. With SSL all data transmited between the client and the server are encypted with a 128bit key. Now, about your question: I havent tried it myself, but try to set the Expires property of the authentication cookie to -1 , which means that the cookie will expire immediately. Do that in the OnLoad event of the secured webform. Also, if you store
    Posted to Getting Started (Forum) by romfeo on 1/11/2006
  • Wait while loading

    Hi, I have a gridview control that needs to load around 1.000.000 records from an sql server on a single page. Is there a way I can inform the user of the percentage of records being loaded (something like a progress bar)? Is Ajax the solution? Any examples on my problem? Thanks a lot in advance! Cheers Tassos
    Posted to Data Presentation Controls (Forum) by romfeo on 1/11/2006
  • Force page refresh

    Hi, Is there a way I can force a page to refresh, based on an event that happend to the server (eg new record in a database)? Thanks Tassos
    Posted to Web Forms (Forum) by romfeo on 1/10/2006
  • Query DB on a webform, load results on another

    Hi, In a project, on a webform I have built a complex (many fields) search form. Clicking on the search button results in quering a sql server database. Usually I show search results in the same page as the search form (e.g. there is a datalist present in the same page with the search form). Is it possible to load the results data on a datalist in a different page? For example I click the search button on webform1.aspx and then webform2.aspx comes up with the search results. Any clues where to start
    Posted to Web Forms (Forum) by romfeo on 11/29/2005
  • Re: Problem installing modules

    I've solved the problem and the solution seems very strange to me: The extension of the zip file must be in lowercase (zip)! If its in upper case (ZIP) the installer just deletes the files! Hope that helps somebody who will gace similar problems in the future. Cheers Tassos
    Posted to DotNetNuke (Forum) by romfeo on 7/10/2005
  • Problem installing modules

    Hi, I am trying to install (Host-> Module Definitions-> Upload new module) some large sized modules (+800KB) via my slow 56K connection, but the upload fails. I've tried increasing the value of maxRequestLength parameter in dnn web.config, with no result. I've also tried to upload modules to install/module folder and then run http://www.mydnnportal.com/install/install.aspx?mode=installresources but have no luck here either. What happens is strange though. After I hit the page aboce, I get the
    Posted to DotNetNuke (Forum) by romfeo on 7/9/2005
  • Re: Looking for alternative way to upload modules to portal

    Yes, that cracked it! I had to put an even bigger value in though.... Thanks a lot!
    Posted to DotNetNuke (Forum) by romfeo on 6/26/2005
Page 1 of 9 (82 items) 1 2 3 4 5 Next > ... Last »