How to convert a string to Proper Case

Use the namespace System.Globalization VB.NET Dim myString As String = ‘syncFusion deVeloPer sUppOrt’ ’ Creates a TextInfo based on the ‘en-US’ culture. Dim TI As TextInfo = New CultureInfo(‘en-US’, False).TextInfo Response.Write(TI.ToTitleCase(myString)) C# string myString = ‘syncFusion deVeloPer sUppOrt’; // Creates a TextInfo based on the ‘en-US’ culture. TextInfo TI = new CultureInfo(‘en-US’,false).TextInfo; Response.Write (TI.ToTitleCase( myString )); For more details refer TextInfo.ToTitleCase()

How to include multiple vb/cs files in the source

You can do this using assembly directives. <%@ assembly src=’test1.vb’ %> <%@ assembly src=’test2.vb’ %> or <%@ assembly src=’test1.cs’ %> <%@ assembly src=’test2.cs’ %> However, note that each source file will be compiled individually into its own assembly, so they cannot have dependencies on each other.

What is a .resx file

The .resx resource file format consists of XML entries, which specify objects and strings inside XML tags. This is useful for localization. For more details refer Resources in .resx files

How should I destroy my objects in ASP.Net?

ASP.Net actually has very solid internal garbage collection. So this is not an issue as it was in previous versions of Active Server Pages. Link to more information: <gcConcurrent> Element