I am planning to begin a screencast section on GridViewGuy. I already have a videos section but I thought screencast will be more interactive as users does not have to download the video to watch it. If you would like to request a particular screen cast then please let me know and I will be more then happy to consider it.
Thanks,
I was working on my demo application when I needed to test a Custom Membership Provider. Here is a small piece of code that tests whether the user got created or not. [TestFixture] public class UserTestFixture { [Test] [RollBack] public void CanAddUser() { string userName = "JohnDoetest"; string password = "something123$"; string email = "johndoetest@gmail.com"; BolayToMembershipProvider provider = new BolayToMembershipProvider(); NameValueCollection config = new NameValueCollection(); config.Add("applicationName", ......
Which AJAX Framework do you mostly use? |
ASP.NET AJAX |
AJAX PRO Library |
Anthem.NET |
Plain XmlHttp Object This is the new poll on GridViewGuy. Simply visit GridViewGuy and cast your vote. The poll control will be on the upper right hand side of the screen. | |
INPUT checkbox checked property is kind of funny. This is because the name of the property also becomes the value of the property as shown in the example below: input type="checkbox" checked = "checked" or simply input type="checkbox" checked So, if you want to dynamically generate the checkbox at runtime and not make the checkbox checked then simply remove the checked property as shown below: bool showChecked = true; Literal lit = new Literal(); lit.Text = "<input type=\"checkbox\" " + (showChecked ......
In my opinion your client/user should never see the yellow screen of death. There are numerous ways to redirect the user to a custom error page. In this post I will discuss how to use Application_Error event in the Global.asax file. Let's check out the code that will throw the error. private string GetObjectFromSession() { if (Session["UserName"] == null) throw new ArgumentNullException("User... is null","UserName is null. Your session has expired. <res> Please log on to the system to start ......
The question up for voting is:
What features would you prefer in GridViewGuy?
Podcasts
More Videos
Live Consultation (Using Meebo Chat)
Visit GridViewGuy and cast your vote!