The CreateUserWizard has a property called LoginCreatedUser.
Just change that to false (Default=true).
world wide web development problems asp net php html xhtml css javascript jquery w3dproblems
Saturday, July 7, 2012
Tuesday, May 1, 2012
ASP.net - Validation of viewstate MAC failed
This error is caused when your server is shared
<system.web>
<machineKey validationKey="{generatedkey}" validation="SHA1" decryption="AES" />
</system.web>
you this url to generate a machineKey
http://www.dcense.com/ASPNETMachineKey.aspx
Monday, April 30, 2012
WebResource.axd Error - "handler must be registered"
In some cases in appears due to corrupt installation of asp.net 4. Just add this
<system.webServer> <handlers> <add name="WebResource.axd" type="System.Web.Handlers.AssemblyResourceLoader" path="WebResource.axd" verb="GET,HEAD,POST,DEBUG" /> </handlers> </system.webServer>
Off you go!
Sunday, April 29, 2012
How to check a Constraint Exception in ASP.net (C#)
try
{
//statements
}
catch (ConstraintException cex)
{
throw;
}
catch (Exception ex)
{
throw;
}
/*
* order matters
*/
Saturday, April 14, 2012
jQuery Countdown Timer
A jQuery plugin that sets a
div or span to show a countdown to a given time.
Usage
- Include the jQuery library in the head section of your page.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> - Download and include the jQuery Countdown CSS and JavaScript in the head section of your page.
Alternately, you can use the packed version<style type="text/css">@import "jquery.countdown.css";</style> <script type="text/javascript" src="jquery.countdown.js"></script>jquery.countdown.pack.js(10.0K vs 30.1K), or the minified versionjquery.countdown.min.js(12.6K, 4.3K when zipped). - Connect the countdown functionality to your divs.
You can include custom settings as part of this process.$(selector).countdown({until: liftoffTime});$(selector).countdown({until: liftoffTime, format: 'dHM'});
Subscribe to:
Comments (Atom)