problems in understanding the codes of cassini web server!!

i was going through the codes of cassini web server.In the file Host.cs i couldnot understand the use of following lines of codes--

String version4 = FileVersionInfo.GetVersionInfo(typeof(HttpRuntime).Module.FullyQualifiedName).FileVersion;

String version3 = version4.Substring(0, version4.LastIndexOf('.'));

_lowerCasedClientScriptPathWithTrailingSlashV10 = "/aspnet_client/system_web/" + version4.Replace('.', '_') + "/";

_lowerCasedClientScriptPathWithTrailingSlashV11 = "/aspnet_client/system_web/" + version3.Replace('.', '_') + "/";

please help me with this
i am new to c#
and can anybody tell me where can i get the detail explaination of codes of cassini web server..

[809 byte] By [sigme] at [2007-12-16]
# 1

Let's say the version of a file comes back as "1.1.4322"

variable4 = "1.1.4322"
variable3 = "1.1"

_lowerCasedClientScriptPathWithTrailingSlashV10 = "/aspnet_client/system_web/1_1_4322/

_lowerCasedClientScriptPathWithTrailingSlashV11 = "/aspnet_client/system_web/1_1/"

VijayeRaji at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
Hi sigme -
Please post this question on the ASP.NET forums ( http://forums.asp.net/)-- they should be better at helping you with cassini.

Thanks,
Karen

KarenLiuMSFT at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...