Ghetto ASP.NET Debugging - Useful Extensions

        public static void Write(this System.Web.HttpResponse response, string formatString, params object[] args)
{
System.Web.HttpContext.Current.Response.Write(string.Format(formatString, args));
}

public static void WriteLine(this System.Web.HttpResponse response, string s)
{
System.Web.HttpContext.Current.Response.Write(s);
System.Web.HttpContext.Current.Response.Write("<br />");
}

public static void WriteLine(this System.Web.HttpResponse response, string formatString, params object[] args)
{
System.Web.HttpContext.Current.Response.WriteLine(string.Format(formatString, args));
}

1 Comment

Comments have been disabled for this content.