I had an answer in the stackoverflow.com site over here: http://stackoverflow.com/a/26134415/1042848
Programming Tips and Tricks - Daily coding tips and tricks regarding C#, .NET, ASP.NET, SQL
Tuesday, 4 November 2014
Allow only decimal numbers in the Textbox using Javascript
Javascript code:
Textbox:
<script language="Javascript" type="text/javascript"> function onlyNos(e, t) { try { if (window.event) { var charCode = window.event.keyCode; } else if (e) { var charCode = e.which; } else { return true; } if (charCode > 31 && (charCode < 48 || charCode > 57)) { if (charCode === 46) return true; else return false; } return true; } catch (err) { alert(err.Description); } } </script>
Textbox:
<asp:TextBox ID="txtNumbersOnly" runat="server" onkeypress="return onlyNos(event,this);" Width="146px" CssClass="rightinput"></asp:TextBox>
Friday, 28 March 2014
ASP.NET Page Life Cycle
When an ASP.NET page runs, the page goes through a life cycle in which it performs a series of processing steps. These include initialization, instantiating controls, restoring and maintaining state, running event handler code, and rendering. It is important for you to understand the page life cycle so that you can write code at the appropriate life-cycle stage for the effect you intend.
You can go through the entire life cycle in details at: ASP.NET Page Life Cycle Overview
You can go through the entire life cycle in details at: ASP.NET Page Life Cycle Overview
Saturday, 1 March 2014
What is Common Language Runtime (CLR) in .NET?
Common Language Runtime or CLR is responsible for executing your application code and the code running under the control of CLR is also called managed code.
Any application written in any language of .Net framework will never directly compiled to machine understood code instead the compiler converts the code into a special language called MSIL (Microsoft Intermediate Language) and then CLR compile MSIL into platform-specific code.
So only the methods that are actually called during execution are compiled.
So in short, the .NET Framework understands only one language that is MSIL.
Any application written in any language of .Net framework will never directly compiled to machine understood code instead the compiler converts the code into a special language called MSIL (Microsoft Intermediate Language) and then CLR compile MSIL into platform-specific code.
So only the methods that are actually called during execution are compiled.
So in short, the .NET Framework understands only one language that is MSIL.
Monday, 6 January 2014
How to rename database table column with new name?
You need to use the sp_rename command, or use Management Studio to do it visually.
Now, to change the Column Name from "Old_Name" to "New_NameChange" we can use command:
sp_RENAME 'Table_Name.[Old_Name]', '[New_NameChange]' , 'COLUMN'
Friday, 13 December 2013
Subscribe to:
Posts (Atom)