程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#實現生日提醒源碼

C#實現生日提醒源碼

編輯:C#入門知識

1 <%@ WebHandler Language="C#" Class="Handler" %>
 2 
 3 using System;
 4 using System.Web;
 5 using System.Collections.Generic;
 6 using System.Data;
 7 using System.Data.SqlClient;
 8 
 9 public class Handler : IHttpHandler {
10     
11     public void ProcessRequest (HttpContext context) {
12         context.Response.ContentType = "text/plain";
13         string json = "[";
14         for (int i = 0; i < SelectMessage().Count; i++)
15         {
16             int today = DateTime.Now.Day;
17             string b = SelectMessage()[i].Birthday.ToString();
18             string[] s = b.Split(-);
19             int birthday = Convert.ToInt32(s[2]);
20             int c = birthday - today;
21 
22             if (c < 0) { c = c + 30; } 
23 
24             json += "{UserName:" + SelectMessage()[i].UserName.ToString() + ",Birthday:" + c +"},";

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved