+
+
+ Module Name
+ Main Assembly
+ .net framework
+ Libraries
+
+
+ <%: SteamWare.memLayer.ML.confReadString("CodModulo") %>
+ <%: mainAssembly %>
+ <%: runtimeImg %>
+
+
+
+
diff --git a/MP-Tablet/About.aspx.cs b/MP-Tablet/About.aspx.cs
new file mode 100644
index 00000000..ab9d23a3
--- /dev/null
+++ b/MP-Tablet/About.aspx.cs
@@ -0,0 +1,67 @@
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Reflection;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace MoonProTablet
+{
+ public partial class About : System.Web.UI.Page
+ {
+ protected Assembly assembly = Assembly.GetExecutingAssembly();
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ lblDllVersion.Text = librariesVers;
+ }
+
+ public string mainAssembly
+ {
+ get
+ {
+ string answ = "";
+ try
+ {
+ answ = assembly.FullName;
+ }
+ catch
+ { }
+ return answ;
+ }
+ }
+ public string runtimeImg
+ {
+ get
+ {
+ string answ = "";
+ try
+ {
+ answ = assembly.ImageRuntimeVersion;
+ }
+ catch
+ { }
+ return answ;
+ }
+ }
+ public string librariesVers
+ {
+ get
+ {
+ string answ = "";
+ try
+ {
+ AssemblyName[] referencedAssemblyNames = assembly.GetReferencedAssemblies();
+ foreach (AssemblyName referencedAssemblyName in referencedAssemblyNames)
+ {
+ answ += referencedAssemblyName.FullName + "