Search Results

5
votes

.NET library or asp.net application for Amazon S3

Have you tried this one? http://www.codeplex.com/ThreeSharp …
0
votes

Resources for Learning Design Patterns

Martin Fowler's website has plenty of information: http://martinfowler.com/articles.html. Much of this is covered also in his book …
2
votes

If Sql Server returns an error, then SqlException should be thrown. But it isn’t

You should actually be able to modify the primary key without error, so long as it doesn't result in a duplicate. …
0
votes

Why is the User information stored in two different tables in ASP.NET’s default Membership Provider?

Some of the other providers in ASP.NET (other than the Membership provider) also store user-specific information. e.g. Profile. More information about this: Several of the shipped A …
0
votes

Disabling account lockout with the SqlMembershipProvider

You could also try setting PasswordAttemptWindow to zero. That may work, since it reduces the length of time in which the number of failed attempts can accumulate. …
1
vote

how to query strongly type datatable

You can use LINQ to DataSet if you're in .NET 3.5. …
0
votes

Setting MyLabel.Text in Repeater’s HeaderTemplate

Try the following inside your header template: <asp:Label ID="Month" runat="server" Text='<%# (Month)Convert.ToInt16(MonthList.SelectedValue) %>' /> …
1
vote

Question about Type Comparison ASP.NET and DBNull

Why not just use: If Row.IsNull("url") Then //' do something here.... End If …
1
vote

ASP.NET MVC MembershipService Email

The Membership services provided by the framework don't support this directly. Your backup plan sounds OK though. This link may …