Tuesday, January 4, 2011
Monday, January 3, 2011
CSS Trick - Removing on-click Dotted lines around links
Whenever you visit any website in Firefox, you many times may have noticed that a dotted outline appears around links whenever you click on them. This dotted outlines doesn’t comes in Internet Explorer. This thing happens only with Firefox. You may
You have to configure your a tag and a:visited tag to stop this. Just add this lines of codes in your css file and get reed of this unwanted behavior.
a {
outline: none;
}
a: visited {
outline: none;
}
This is all that does the trick and makes your website more cool.
Top 10 Useful Firefox Keyboard Shortcuts

Here are the 10 most useful Firefox Keyboard Shortcuts. Use these shortcuts to enhance your web browsing experience and make your favorite browser more powerful.
Command Shortcut
1. Reload (override cache) Ctrl+F5, Ctrl+Shift+R
2. Stop Current Page Esc
3. Move to Next Frame F6
4. Move to Previous Frame Shift+F6
5. Zoom In / Zoom Out Ctrl++ / Ctrl+-
6. Zoom Reset Ctrl+0
7. Search, Find Ctrl+F
8. Find Again/ Find Previous F3, Ctrl+G / Shift+F3
9. Close a Tab Ctrl+W, Ctrl+F4
10. Next Tab/ Previous Tab Ctrl+Tab / Ctrl+Shift+Tab
Agile Software Development
Agile software development is a concept of a software engineering for quick software development. As a software development process is combination of many phases like requirement analysis and gathering, feasibility study, design,coding and testing and documentation. In agile software development We follow all the above things in agile development with each iteration. Software development prorities are build for each iteration in by team of develoeprs and customers.
For more details of agile developement. Please visit following link...
Agile development methodology promotes adaptive planning, evolutionary development and delivery; time boxed iterative approach and encourages rapid and flexible response to change. It's a conceptual framework that promotes foreseen interactions throughout the development cycle.
Among several agile development methodologies we use SCRUM which is an iterative, incremental framework for Software Development. Benefits of using our SCRUM Agile Methodology:
Benefits of Agile Methodology
1. Delivers highest business values early on in the project
2. Promotes customer satisfaction
3. Provides customer driven approach
4. Focuses on speed of delivery
5. Provides openness and visibility to customers
6. Removes impediments in a prioritized and systematic manner
7. Improves employee retention by empowering employees and by promoting self-management, team communication, learning, and value-building
1. Delivers highest business values early on in the project
2. Promotes customer satisfaction
3. Provides customer driven approach
4. Focuses on speed of delivery
5. Provides openness and visibility to customers
6. Removes impediments in a prioritized and systematic manner
7. Improves employee retention by empowering employees and by promoting self-management, team communication, learning, and value-building
Popping up Message Boxes In Grid View
<form id="form1" runat="server">
<asp:SqlDataSource runat="server"
ID="SqlDataSource2"
ConnectionString="..."
SelectCommand="SELECT [CategoryID], [CategoryName],
[Description] FROM [Categories]"
DeleteCommand="Delete from categories where categoryID=@categoryID">
<DeleteParameters>
<asp:Parameter Name=categoryID Type=int16 />
</DeleteParameters>
</asp:SqlDataSource>
<asp:GridView ID="GridView2" runat=server AutoGenerateColumns="False"
datasourceid="SqlDataSource2" DataKeyNames=CategoryID>
<Columns>
<asp:BoundField DataField="CategoryID"
HeaderText="ID"
readonly=true/>
<asp:BoundField DataField="CategoryName" HeaderText="Name"/>
<asp:BoundField DataField="Description" HeaderText="Description" />
<asp:TemplateField HeaderText="Delete">
<ItemTemplate>
<asp:Button ID="deleteButton" runat="server"
CommandName="Delete" Text="Delete"
OnClientClick="return confirm('Are you sure you want to delete this record?');" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Difference between int.Parse and Convert.ToInt32
I know this post sound basic to most of people but still lots of people does not know this. So I decided to post a blog post for this. Both int.Parse and Convert.ToInt32 are used to convert string into the integer but Only difference between them is to Convert.ToInt32 handle null and returns ‘0’ as output and int.parse is not going to handle NULL and will give a Argument Null Exception. Here is the example for that both are almost same except handling null.
Creating Validator Controls for the CheckBox and CheckBoxList
I saw the post that has been asked number of times ie: how to validate the Checkbox and checkboxlist
so we can validate the Both of this using the Javascript or JQuery , but here I am going to make it much more easy ie: 4guysformula Provides the Control which can added to our toolbox then you can work these similar to the other validation Control
Validation Control for Checkbox and Checkboxlist
Go to the page down - Get the control ie: dll file ie: skmvalidators.dall place the file on Bin Folder of your project then add the dll file to your toolbox. then drag and drop to your aspx page & set some property thats it.
Alternatively Download the file here skmValidators.rar
Alternatively Download the file here skmValidators.rar



















