I just noticed that I have reached the Professional level at the http://www.codeasp.net. Technorati Tags: Community ......
There are times that we need to set the border color of the GridView just like in my case, I was told to set the border color of GridView to a particular color instead of the default black. What I did is simply use the BorderColor property of the GridView and set it declaratively like below: <asp:GridView ID="GridView1" runat="server" GridLines="Both" BorderColor="Red"><as... Here's how it looks when we run that one in the browser. Firefox 3.5 Safari 5 IE 8 Noticed that in IE8 ......
I was working with a project that uses the concept of master page. Within the master page I have a bunch of UserControls for some specific purposes and one of the UserControl is for the site dynamic menu. The menu was basically built using JQuery and CSS. The menu works fine if you are using it as an anonymous user but if you logged in as authorize user the menu will no longer work for some odd reasons and produces the following script error below in the browser: Message: Object expected Line: 122 ......
NDepend is an awesome tool by Patrick Smacchia (C# MVP) which the primary goal is to let you analyze your application and to get clear idea about cross dependencies between objects, level of association between them and to know the condition of your code easily. With NDepend you can get the summary of everything on what’s happening in your project at glance and provide a lot more cool features that would help you in analyzing your application. Here's a sample screen shot of the tool: Note that just ......