Difference between Value Types and Reference Types
Value Types:
bool, byte, chat, decimal, double, enum , float, int, long, sbyte, short, strut, uint,
ulong, ushort. Value types are stored in the Stack
Reference Types:
class, delegate, interface, object, string. Reference types are stored in the Heap
Related Posts:
Change Case: Convert to Proper Case in ASP.NET using VB.Net
This example explain the understanding of convert to Proper Case in ASP.NET using VB.Net
Example:
Dim strText As String = "welcome to allwin smart"Dim strPropCaseText As String = String.EmptystrPropCaseText = StrConv(strTe… Read More
How to set TextBox as readonly in AJAX Calendar Extender?
How to set TextBox as readonly in AJAX Calendar Extender?
Read only controls are not posted back to the server. In postback you will lose the value in a read only control. So, you can set the ReadOnly=False on your TextBox … Read More
Difference between Value Types and Reference Types
Difference between Value Types and Reference Types
Value Types:
bool, byte, chat, decimal, double, enum , float, int, long, sbyte, short, strut, uint,ulong, ushort. Value types are stored in the Stack
Reference Types:
cla… Read More
Allow numeric only in text box using javascript?
Allow numeric only in text box using javascript?
In Script File:
<script type="text/javascript"> function allowNumericOnly(evt) { var charCode = (evt.which) ? ev… Read More
Global.asax file not firing when uploading the files in online server using asp.net?
Global.asax file not firing when uploading the files in online server using asp.net?
To add the following lines in your web.config file to solve the issue.
<system.webServer> <mod… Read More
0 comments:
Post a Comment