服务器端弹出窗口
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IBLL
{
public class GetRedirect
{
public GetRedirect()
{
}
public const string WINALERT = "<script>alert('{0}');</script>";
public const string REDIRECT = "<script>document.location.href='{0}';</script>";
public const string ALLREDIRECT = "<script>parent.document.location.href='{0}';</script>";
}
}