Javascript
ASP.NET CSS Highlight TextBox on Focus
Many sites have a useful visual way to show the user what TextBox (input text control) is currently focused or selected by highlighting the background of the control with a color such as yellow. When you tab or click into the TextBox, the border and background usually change to denote it has focus.
Here is what the TextBox should look like when it is focused and unfocused after applying this trick:
Un-Focused TextBox

Alternative for Hyperlink using # for HREF (a href=#) Scrolling Issue with Javascript OnClick
When hooking up javascript events on your hyperlink anchor tags, many developers will set the HREF property to "#". If you don't do something like that, then when you click on your link, it will navigate your page to an invalid URL which is not what you want. For instance, if you were to do something like this:
<script type="text/javascript">
Fix for Firefox click() event issue
Firefox does not support the javascript click() event on a hyperlink. So doing something like:
<asp:LinkButton ID="lnkMyButton" runat="server">My Button To Click</asp:LinkButton>
<a href="#" onclick="document.getElementById('lnkMyButton').click();">Click this to click the other link!</a>
Internationalize / Localize ASP.NET Javascript
I ran across an interesting presentation today on how to internationalize javacripts in ASP.NET. The presentation was given in January 2008 by Guy Smith-Ferrier and is a continuation based on his article in MSDN Magazine from January 2008 called Around the World with ASP.NET AJAX Applications.
You can download it as a PDF here.
Popular Articles
Last viewed:
- C# Free Component to Generate PDF - Convert HTML to PDF
- Clustered Index vs. Non-Clustered Index in SQL Server
- Getting Started with Microsoft Chart Controls for ASP.NET 3.5
- GridView ObjectDataSource LINQ Paging and Sorting
- Data Access Layer using SqlDataReader and C#
- Disable Button on Submit (Prevent multiple submits)

Recent comments
14 hours 27 min ago
1 day 14 hours ago
3 days 15 hours ago
4 days 4 hours ago
4 days 15 hours ago
4 days 21 hours ago
5 days 1 hour ago
1 week 22 hours ago
1 week 1 day ago
1 week 4 days ago