|
|
|
<% int serverTagCount = 0; %>
<% foreach(CopyServer serv in this.CopyServers) { %>
|
<%SPHttpUtility.HtmlEncode(serv.Url,Response.Output);%>
|
<% if (!IsPostBack) { %>
<% } else if(serv.Finished) { %>
|
<% } else { %>
|
<% } %>
|
<% int attemptTagCount = 0; %>
<% foreach(CopyAttempt att in serv.Attempts) { %>
<%SPHttpUtility.HtmlEncode(GetNonServerUrlPartAndCrumbs(att.Url),Response.Output);%>
<%SPHttpUtility.HtmlEncode(att.ErrorMessage,Response.Output);%>
|
<% if (!IsPostBack) { %>
<% } else if (att.Finished) { %>
|
<% } else { %>
|
<% } %>
|
<% attemptTagCount++; %>
<% } %>
<% serverTagCount++; %>
<% } %>
|