Default.aspx.cs
上传用户:zhjqfly
上传日期:2009-10-06
资源大小:4k
文件大小:1k
源码类别:

数据库系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Web;
  5. using System.Text;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class _Default : System.Web.UI.Page 
  12. {
  13.     public string OutputString = "";
  14.     protected void Page_Load(object sender, EventArgs e)
  15.     {
  16.         OutputString = "<text id="Text01" x="200" y="350" style="text-anchor:middle;font-size:24;font-family:宋体;fill:blue">";
  17.         OutputString +="系统当前时间:" + DateTime.Now.ToString();
  18.         OutputString += "</text>";
  19.         Response.ContentEncoding = System.Text.Encoding.UTF8;
  20.         Response.ContentType = "text/xml";
  21.         Response.Write(OutputString);
  22.         Response.End();
  23.     }
  24. }