Tips Station Asp.net Article Seo Articles
Tutorials Code Samples
›  Home
›  Mission
›  About us
›  Contact Us
›  Feedback
›  Terms & Condition
Asp Articles
IT Solutions
 
› ASP.NET

› Programming Tips

› Ajax

› Asp

› ADO.NET

› Databases

› SEO

› CSS And Designing

› Php

 
Most Viewed Articles
 
› Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

› Change theme dynamically without page refresh in ASP.NET

› Install AJAX On Machines Running Visual Studio 2005

› Creating Pretty Popups Using AJAX

› Simple ASP Image Resize Function

› SQL Server Performance Counters

› ASP.Net Interview Questions And Their Answers

› Encode Url using ASP

› Difference Between DataGrid and GridView in Asp.Net

› Select Specific Value WithIn Drop Down List Or Radio Button List

more...
 
 
Home> Programming Tips
 
Get Environment Details - Asp.Net
 

An example of how to view details of the web servers environment

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load  
        Dim sb As New StringBuilder  
      
        sb.AppendLine("Machine Name: " & Environment.MachineName & "<br>")  
        sb.AppendLine("OS Version: " & Environment.OSVersion.VersionString & "<br>")  
        sb.AppendLine("No. of Processors: " & Environment.ProcessorCount & "<br>")  
        sb.AppendLine("Uptime: " & TimeSpan.FromMilliseconds(Environment.TickCount).Days & " days, ")  
        sb.AppendLine(TimeSpan.FromMilliseconds(Environment.TickCount).Hours & " hours, ")  
        sb.AppendLine(TimeSpan.FromMilliseconds(Environment.TickCount).Minutes & " minutes<br>")  
       sb.AppendLine("User Domain Name: " & Environment.UserDomainName & "<br>")  
       sb.AppendLine("Interactive User: " & Environment.UserInteractive & "<br>")  
       sb.AppendLine("Username: " & Environment.UserName & "<br>")  
     
       Label1.Text = sb.ToString  
   End Sub 

 
 
Vrp Technologies
 
Serversea Hosting
 
 
Latest Articles
 
› Sending SMS With PHP

› MySQL Join Tutorial

› Make An RSS Feed Using PHP

› Intro To Object: Option Variables

› Design An Online Chat Room With PHP And MySQL

› Create Tell A Friend Script With HTML & PHP

› Benchmark And Optimize PHP Script Speed

› What Kind of DBA Are You?

› SQL Server Performance Counters

› SQL Server Performance Tips

more...
 
Random Articles
 
› Cookies in ASP.NET

› Create Tell A Friend Script With HTML & PHP

› Creating Pretty Popups Using AJAX

› SQL Server Performance Counters

› Filter Certain Words in a String - Asp.net

› Understanding VARCHAR(MAX) In SQL Server 2005

› How to Send an Email in Asp.Net

› ADO.NET Data Classes

› Benchmark And Optimize PHP Script Speed

› Server Variables in ASP

more...
 
Home Mission About us Contact us Feedback Terms Conditions
2008 © Copyright TipsStation. All rights reserved.