-Annie-

03.ByTheCakeAddMenu(WithFileReader)

Jan 29th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. namespace HTML_CSS_HTTP
  2. {
  3.     using System;
  4.     using System.IO;
  5.  
  6.     public class ByTheCakeAddMenu
  7.     {
  8.         static void Main()
  9.         {
  10.             Console.WriteLine("Content-Type: text/html\r\n");
  11.             string htmlContent = File.ReadAllText("../www/cakes.html");
  12.             Console.WriteLine(htmlContent);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment