blog.animesh.co.in
Ani's Weblog: June 2011
http://blog.animesh.co.in/2011_06_01_archive.html
A place to learn, explore and share technologies. Sunday, June 19, 2011. Finally we will have SharePoint 2010 Service Pack 1. Yes, finally Microsoft is releasing Service Pack 1 for SharePoint 2010. It is expected to get release by June end 2011, when it will be available for download. Reference: http:/ sharepoint.microsoft.com/blog/Pages/BlogPost.aspx? Sunday, June 19, 2011. Finally we will have SharePoint 2010 Service Pack . The Code Project Latest Articles. VS Equals in C#. Portal And Content management.
blog.animesh.co.in
Ani's Weblog: March 2009
http://blog.animesh.co.in/2009_03_01_archive.html
A place to learn, explore and share technologies. Sunday, March 1, 2009. Boxing Unboxing in C#. All types in c# are derived from the System.Object base class. In .NET languages, there are basically two types:. 1 Value type (derived from System.ValueType) - The struct and primitive types are stored on the stack (very fast accessible memory area). 2 Reference type (derived from System.Object) - the object types are stored on the heap (in case of .NET its managed heap). Object o = i; / boxing. You cannot Im...
techolyvia.wordpress.com
Gitolekha's Tech Weblog | Just another WordPress.com weblog | Page 2
https://techolyvia.wordpress.com/page/2
Gitolekha’s Tech Weblog. Just another WordPress.com weblog. March 9, 2011. Read selected value from dropdownlist, and set the maxlength of a textbox through javascript in user control. Posted by techolyvia under javascript. Tags: read selected value from dropdownlist using javascript. Set maxLength of textbox using javascript. Using javascript inside usercontrol using ClientID. Using onchange event of dropdownlist using javascript. Hence it is important to call the clientId of the textbox like :. Event o...
blog.animesh.co.in
Ani's Weblog: November 2009
http://blog.animesh.co.in/2009_11_01_archive.html
A place to learn, explore and share technologies. Thursday, November 19, 2009. Microsoft SharePoint Server 2010 Beta is now available. Now you can evaluate the Beta product to simplify your IT environment and give you more control. There are two versions of SharePoint Server 2010 Beta. Installation of the SharePoint Server 2010 Beta requires one of the following product keys:. 1 SharePoint Server 2010 (Enterprise Client Access License features). 2 SharePoint Server 2010 for Internet Sites, Enterprise.
blog.animesh.co.in
Ani's Weblog: DataColumn.MaxLength not working in C#
http://blog.animesh.co.in/2010/05/datacolumnmaxlength-not-working-in-c.html
A place to learn, explore and share technologies. Sunday, May 23, 2010. DataColumn.MaxLength not working in C#. Visual Studio Intellisense: Gets or Sets the maximum length of a text column. MSDN: The maximum length of the column in characters. If the column has no maximum length, the value is –1 (default). But most of the developers didn't able to get the desired result. It always returns -1. Microsoft has confirmed that this is a bug in the Microsoft products. ObjConn = new SqlConnection(strConnString);.
blog.animesh.co.in
Ani's Weblog: March 2010
http://blog.animesh.co.in/2010_03_01_archive.html
A place to learn, explore and share technologies. Monday, March 15, 2010. The Microsoft idea behind introducing the AllowUnsafeUpdates property is to protect you from cross-site scripting attacks. MSDN Definition: Gets or sets a Boolean value that specifies whether to allow updates to the database as a result of a GET request or without requiring a security validation. Setting this property to true opens security risks, potentially introducing cross-site scripting vulnerabilities. Monday, March 15, 2010.
blog.animesh.co.in
Ani's Weblog: April 2009
http://blog.animesh.co.in/2009_04_01_archive.html
A place to learn, explore and share technologies. Wednesday, April 15, 2009. Response.Redirect Vs. Server.Transfer. Difference between Response.Redirect and Server.Transfer:. This is more user-friendly, as the site visitor can bookmark the page that they are redirected to. Transferred pages appear to the client as a different URL than they really are. This means that things like relative links / image paths may not work if you transfer to a page from a different directory. Eg of HTTP Header,. This tells ...
blog.animesh.co.in
Ani's Weblog: February 2009
http://blog.animesh.co.in/2009_02_01_archive.html
A place to learn, explore and share technologies. Monday, February 23, 2009. Const / read-only / static in C#. It is defined at compile time and cannot be changed at runtime and must be initialized as they are declared. Eg public const double PI = 3.14159;. Changing the value elsewhere this will cause a compiler error. Constants must be of an integral type (sbyte, byte, short, ushort, int, uint, long, ulong, char, float, double, decimal, bool, or string), an enumeration, or a reference to null. Because a...