Hyper-V bugfixing
This commit is contained in:
parent
42f9646c4a
commit
10a4936a3f
3 changed files with 39 additions and 39 deletions
|
@ -557,7 +557,7 @@ namespace WebsitePanel.EnterpriseServer
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// asynchronous process starts here
|
// asynchronous process starts here
|
||||||
CreateServerAsyncWorker worker = new CreateServerAsyncWorker();
|
CreateServerAsyncWorker2012 worker = new CreateServerAsyncWorker2012();
|
||||||
|
|
||||||
worker.TaskId = vm.CurrentTaskId; // async task ID
|
worker.TaskId = vm.CurrentTaskId; // async task ID
|
||||||
worker.ThreadUserId = SecurityContext.User.UserId;
|
worker.ThreadUserId = SecurityContext.User.UserId;
|
||||||
|
|
|
@ -92,16 +92,6 @@
|
||||||
Text="*" meta:resourcekey="DvdLibraryPathValidator" Display="Dynamic" SetFocusOnError="true" />
|
Text="*" meta:resourcekey="DvdLibraryPathValidator" Display="Dynamic" SetFocusOnError="true" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td class="SubHead" style="width:200px;">
|
|
||||||
<asp:Localize ID="locReplicaPath" runat="server" meta:resourcekey="locReplicaPath" Text="Path to Replications:"></asp:Localize>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<asp:TextBox Width="300px" CssClass="NormalTextBox" Runat="server" ID="txtReplicaPath"></asp:TextBox>
|
|
||||||
<asp:RequiredFieldValidator ID="ReplicaPathValidator" runat="server" ControlToValidate="txtReplicaPath"
|
|
||||||
Text="*" meta:resourcekey="ReplicaPathValidator" Display="Dynamic" SetFocusOnError="true" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
</table>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<br />
|
<br />
|
||||||
|
@ -188,6 +178,16 @@
|
||||||
<tr id="IsReplicaServerRow" runat="server">
|
<tr id="IsReplicaServerRow" runat="server">
|
||||||
<td class="SubHead" style="padding-left: 20px;" colspan="2">
|
<td class="SubHead" style="padding-left: 20px;" colspan="2">
|
||||||
<table cellpadding="2" cellspacing="0" style="margin: 10px;">
|
<table cellpadding="2" cellspacing="0" style="margin: 10px;">
|
||||||
|
<tr>
|
||||||
|
<td style="width: 200px;">
|
||||||
|
<asp:Localize ID="locReplicaPath" runat="server" meta:resourcekey="locReplicaPath" Text="Path to Replications:"></asp:Localize>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<asp:TextBox Width="300px" CssClass="NormalTextBox" runat="server" ID="txtReplicaPath"></asp:TextBox>
|
||||||
|
<asp:RequiredFieldValidator ID="ReplicaPathValidator" runat="server" ControlToValidate="txtReplicaPath"
|
||||||
|
Text="*" meta:resourcekey="ReplicaPathValidator" Display="Dynamic" SetFocusOnError="true" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 200px">
|
<td style="width: 200px">
|
||||||
<asp:Localize ID="locCertThumbnail" runat="server" meta:resourcekey="locCertThumbnail" Text="SSL Certificate Thumbnail:"></asp:Localize>
|
<asp:Localize ID="locCertThumbnail" runat="server" meta:resourcekey="locCertThumbnail" Text="SSL Certificate Thumbnail:"></asp:Localize>
|
||||||
|
|
|
@ -228,33 +228,6 @@ namespace WebsitePanel.Portal.ProviderControls {
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::System.Web.UI.WebControls.RequiredFieldValidator DvdLibraryPathValidator;
|
protected global::System.Web.UI.WebControls.RequiredFieldValidator DvdLibraryPathValidator;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// locReplicaPath control.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// Auto-generated field.
|
|
||||||
/// To modify move field declaration from designer file to code-behind file.
|
|
||||||
/// </remarks>
|
|
||||||
protected global::System.Web.UI.WebControls.Localize locReplicaPath;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// txtReplicaPath control.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// Auto-generated field.
|
|
||||||
/// To modify move field declaration from designer file to code-behind file.
|
|
||||||
/// </remarks>
|
|
||||||
protected global::System.Web.UI.WebControls.TextBox txtReplicaPath;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// ReplicaPathValidator control.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// Auto-generated field.
|
|
||||||
/// To modify move field declaration from designer file to code-behind file.
|
|
||||||
/// </remarks>
|
|
||||||
protected global::System.Web.UI.WebControls.RequiredFieldValidator ReplicaPathValidator;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// locProcessorSettings control.
|
/// locProcessorSettings control.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -426,6 +399,33 @@ namespace WebsitePanel.Portal.ProviderControls {
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::System.Web.UI.HtmlControls.HtmlTableRow IsReplicaServerRow;
|
protected global::System.Web.UI.HtmlControls.HtmlTableRow IsReplicaServerRow;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// locReplicaPath control.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Auto-generated field.
|
||||||
|
/// To modify move field declaration from designer file to code-behind file.
|
||||||
|
/// </remarks>
|
||||||
|
protected global::System.Web.UI.WebControls.Localize locReplicaPath;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// txtReplicaPath control.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Auto-generated field.
|
||||||
|
/// To modify move field declaration from designer file to code-behind file.
|
||||||
|
/// </remarks>
|
||||||
|
protected global::System.Web.UI.WebControls.TextBox txtReplicaPath;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// ReplicaPathValidator control.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Auto-generated field.
|
||||||
|
/// To modify move field declaration from designer file to code-behind file.
|
||||||
|
/// </remarks>
|
||||||
|
protected global::System.Web.UI.WebControls.RequiredFieldValidator ReplicaPathValidator;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// locCertThumbnail control.
|
/// locCertThumbnail control.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue