PoshCode Logo PowerShell Code Repository

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

  1. <%@ Page Language="C#" CodeFile="MailboxConfirm.aspx.cs" AutoEventWireup="true" Inherits="MailboxConfirm" ClassName = "MailboxConfirm" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head id="Head1" runat="server">
  5.     <title> Domain Mailbox Task Confirm Page</title>
  6. </head>
  7. <body>
  8. <form id="frmMailboxConfirm" runat="server" method="Post" action="MailboxTaskResults.aspx">
  9. <script type="text/javascript" language="JavaScript"  defer="defer">
  10. function GoBack()
  11. {
  12.         document.location = "MailboxTasks.aspx"
  13. }
  14. </script>
  15.     <asp:TextBox ID="newAddress" runat="server" Visible="False"></asp:TextBox>
  16.     <asp:CheckBox ID="chkKeepAddress" runat="server" Visible="False" />
  17. </form>
  18. </body>
  19. </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.

Syntax highlighting:


Remember me