Eventcalendar control source code and problems that may occur in ASP. NET 2.0 Beta 2 starter kits

Source: Internet
Author: User
In ASP. NET 2.0 Beta 2 starter kitsIn the club site Starter Kit project, an eventcalendar. dll does not provide the source code. Below is the source code given by the author address http://beta.asp.net/StarterKits/Downloads/EventCalendar.zip

If you are readingClub site starter kit, only extract all ZIP files to the app_code directory of the project, and then
<% @ Register tagprefix = "EC" namespace = "controlsample" assembly = "eventcalendar" %>
Change
<% @ Register tagprefix = "EC" namespace = "controlsample" %>
You can.

Note the following in starter kits:
InIn club site starter kit, Chinese characters are garbled. The solution is to change the database encoding to Chinese.

InIn the personal Web site starter kit, the database connection pool may be full. This is because in photomanager. CS, the database is not closed. You can refer to the following link to correct this error.
Bug fix closing dB connections after use

When registering a new user, the system will always prompt you "Please enter a different password ."
This is because the default password of membership must meet the following requirements.
1. At least 8 characters
2. At least one uppercase letter and one lowercase letter
3. At least one non-letter character

If you want to relax your password policy, you can set it in Web. config.
<System. Web>

<

Membership defaultprovider = "aspnetsqlprovider">
<Providers>
<Add name = "aspnetsqlprovider"
Type = "system. Web. Security. sqlmembershipprovider"
Connectionstringname = "localsqlserver" // name of the connection to the aspnetdb Database
Requiresquestionandanswer = "false"
Requiresuniqueemail = "true"
Passwordformat = "hashed"
Minrequirednonalphanumericcharacters = "0"
Minrequiredpasswordlength = "3"/>
</Providers>
</Membership>

Hope to help you

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.