ASP.NET(vb.net) Server.CreateObject() - Server Object - Server.CreateObject() : The CreateObject method creates an instance of a server component. If the component has implemented the OnStartPage and OnEndPage methods, the OnStartPage method is called at this time.
ShotDev Focus:
- ASP.NET(vb.net) Server.CreateObject() - Server Object
Example
AspNetServerCreateObject.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim Fso,Drive As Object Fso = Server.CreateObject("Scripting.FileSystemObject") Drive = Fso.GetDrive("C:") Me.lblText.Text = ("Drive C: = " &FormatNumber((Drive.TotalSize)/1024/1024/1024,0)&" GB") Fso = nothing Drive = nothing End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot