%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Opation.aspx.cs" Inherits="WebForm.Platform.WorkFlowDesigner.Opation" %>
<%
string op = Request.QueryString["op"];
string title = string.Empty;
switch (op)
{
case "save":
title = "正在保存...";
break;
case "install":
title = "正在安装...";
break;
case "uninstall":
title = "正在卸载...";
break;
case "delete":
title = "正在删除...";
break;
}
%>