using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Timers; using System.Diagnostics; using TransIpApiLibrary; namespace TestApplication { public partial class _Default : System.Web.UI.Page { // Please note that global.asax contains the TransIpApi.initApi() call, // do not forget to copy/paste that call into your own application. protected void Page_Load(object sender, EventArgs e) { Response.Write(TransIpApi.getWhois("wmit.com").Replace("\n","
")); } } }