using System;
using System.Net;
using System.Net.Sockets;
namespace GetNum
{
public class checkurl
{
   public checkurl()
   {
   }
   public static bool GetUrlStatus()
   {
    try
    {
     System.Web.HttpContext page=System.Web.HttpContext.Current;
     string link = page.Request.UrlReferrer.ToString();  阅读全文
类别:asp.net 查看评论
文章来源:http://hi.baidu.com/zzticzh/blog/item/6da1312970147cff98250ac5.html
posted @ 2007-05-14 09:02 zzticzh| 编辑

declare @ssid nvarchar(50)
declare cur cursor
read_only
for select top 1 ssid from ssidinfo
open cur

fetch next from cur into @ssid
while (@@fetch_status =0)
begin
print @ssid
fetch next from cur into @ssid
end
close cur
deallocate cur

阅读全文
类别:Sqlserver 查看评论
文章来源:http://hi.baidu.com/zzticzh/blog/item/c43cb9b7b3fe63f530add178.html
posted @ 2007-05-14 09:02 zzticzh 阅读(80) | 评论 (0)编辑