Search

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

Matching Posts

  • Re: SQL timeout in the morning

    First make sure the database isn't setup to auto close - right click database -> properties -> Options page -> "Auto Close" property Then you need to make sure that your app domain isn't getting recycled because if it is your web app will need to initialise itself and it's database connections the first time it's accessed rather than simply processing the new request. Theres a great article about what causes app domain recycles and how to diagnose problems here
  • Re: Remove password restriction in Create user wizard

    I'm guessing you're using the standard Sql Membership Provider, even if you aren't this is relevant. In your web.config in the membership section setup the minRequiredPasswordLength and maxInvalidPasswordAttempts attributes in the providers tag. Like this: <configuration> <system.web> <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="15"> <providers> <clear/> <add name="AspNetSqlMembershipProvider"
    Posted to Security (Forum) by cameron_w on 9/22/2009
  • Re: introduction crystal reports

    I've just checkedthe www.businessobjects.com URL and it seemed to work fine. Maybe it was down for a bit when you tried. I believe that VS2005 and VS2008 are similar enough that you can use this tut for both
    Posted to Crystal Reports (Forum) by cameron_w on 9/17/2009
  • Re: introduction crystal reports

    at the same URL http://www.businessobjects.com/global/pdf/dev_zone/VS2005_Walkthroughs.pdf I've just tried it now and it works
    Posted to Crystal Reports (Forum) by cameron_w on 9/17/2009
  • Re: How can I call HTML control via code behind ?

    You need to make use of the Request.Form collection. Request.Form["nameOfCreatedInputTag"] will provide you with the value of the tag. Obviously you can loop through these using the numeric indexer. You can also loop through the Request.Form.AllKeys collection to get the names of the available parameters. The input tag must have a "Name" attribute for it to appear in this collection. Hope that helps
    Posted to Web Forms (Forum) by cameron_w on 9/10/2009
  • Re: Unique id

    All you need is an application state variable called "NumberOfSessions" or whatever which tracks the number of currently open sessions. You would do this by inrementing this variable in the Session_Start event in your global.asax and decrementing it in the Session_End. Then in the session start event if there are already 2 sessions open response.write an appropriate message saying that no more sessions are available until an existing one is closed and close the newly created session.
    Posted to Security (Forum) by cameron_w on 9/9/2009
  • Re: Application Pools

    [quote user="peuge"] I thought that if I could assign each .aspx its own application pool then it would only hang on that page and not all the other .aspx pages, is this possible?[/quote] That's not a good idea. Rather try having a look in the windows application event log to see if that lists any asp.net related issues. If there's nothing in the event log because the issue that causes hanging rather than crashing then you could try setting up a performance monitoring profile to
  • Re: introduction crystal reports

    My mistake, there were some good walkthroughs there but it looks like SAP shut that down after buying Crystal Decisions
    Posted to Crystal Reports (Forum) by cameron_w on 9/9/2009
  • Re: introduction crystal reports

    looks like the business objects site is still going though - http://www.businessobjects.com/global/pdf/dev_zone/VS2005_Walkthroughs.pdf
    Posted to Crystal Reports (Forum) by cameron_w on 9/9/2009
  • Re: How can I count any character in a column ?

    This should do it: select Id, email, len(email) - len(replace(email,'@','')) as [counter]
Page 1 of 34 (333 items) 1 2 3 4 5 Next > ... Last »