" id="form_body_div">
<%
if (!src.IsNullOrEmpty())
{
if (!isCustomeForm)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
System.IO.TextWriter tw = new System.IO.StringWriter(sb);
Server.Execute(src, tw);
Response.Write(sb.ToString().RemovePageTag());
}
else
{
Response.Write("");
Response.Write("");
Response.Write("");
//Response.Write("");
src = src.IndexOf('?') >= 0 ? src + Request.Url.Query.Substring(1) : src + Request.Url.Query;
Response.Write("");
}
}
%>
<%
if (isSign && "0" == display && !isCopyFor)
{
string commentsOptions = new RoadFlow.Platform.WorkFlowComment().GetOptionsStringByUserID(RoadFlow.Platform.Users.CurrentUserID);
%>
处理意见:
<%if (signType == 2){%>
<%
string signFile = string.Concat(Server.MapPath("../../Files/UserSigns/"), RoadFlow.Platform.Users.CurrentUserID, ".gif");
string signSrc = string.Concat("../../Files/UserSigns/", RoadFlow.Platform.Users.CurrentUserID, ".gif");
if (!System.IO.File.Exists(signFile))
{
System.Drawing.Bitmap img = new RoadFlow.Platform.WorkFlow().CreateSignImage(RoadFlow.Platform.Users.CurrentUserName);
if (img != null)
{
img.Save(signFile, System.Drawing.Imaging.ImageFormat.Gif);
}
}
%>

<%}%>
<%}%>