ASPX Mailbox (3 of 6) (modification of post by view diff)
embed code: <script type="text/javascript" src="http://PoshCode.org/embed/507"></script>download | new post
This is part 3 of a 6 part mailbox creation web site.
This site allows local administrators to create and delete mailboxes, and change email addresses. Save this as MailboxConfirm.aspx
- <%@ Page Language="C#" CodeFile="MailboxConfirm.aspx.cs" AutoEventWireup="true" Inherits="MailboxConfirm" ClassName = "MailboxConfirm" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head id="Head1" runat="server">
- <title> Domain Mailbox Task Confirm Page</title>
- </head>
- <body>
- <form id="frmMailboxConfirm" runat="server" method="Post" action="MailboxTaskResults.aspx">
- <script type="text/javascript" language="JavaScript" defer="defer">
- function GoBack()
- {
- document.location = "MailboxTasks.aspx"
- }
- </script>
- <asp:TextBox ID="newAddress" runat="server" Visible="False"></asp:TextBox>
- <asp:CheckBox ID="chkKeepAddress" runat="server" Visible="False" />
- </form>
- </body>
- </html>
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.
PowerShell Code Repository