Question : Adding another domain email address to Exchange Server 2000

Hello Experts:

I am trying to add an additional email address to our organization. MX records are pointed to our WAN successfully. Internally the new address works, however,

I added the email address to the default recipient policy in system manager, as well as tried even creating a new recipient policy. I "updated now" , even restarted the server, but I dont see the email address in the properties of users in AD, maybe I add it myself?
Well either way, the big problem is that we have a new domain we're adding to our business. I have four users (top mgmt) that want to use this new email address, but when I attempt to send from an external source I get this error "550 550 5.7.1 Unable to relay...(state 14).

I am sure I am missing something, but feeling a bit braindead today, can anyone point me in the right direction? Much Thanks :D --

Answer : Adding another domain email address to Exchange Server 2000

Stupid I didn't saw it earlier. You are saying that your panel is not visible, the modalpopupextender doesn't set your panel to visible, only setting it to "display: block" try the following example instead



<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajax" %>
<!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 runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div>
    <asp:UpdatePanel ID="upSend" runat="server">
        <ContentTemplate>
            <asp:Button ID="btnSend" runat="server" text="Button" OnClick="btnSend_Click" />
           
           
           
        </ContentTemplate>
    </asp:UpdatePanel>
    <asp:Panel ID="pnlShow" runat="server" style="display: none">
                <h1>hello world</h1>
            </asp:Panel>
            <asp:HiddenField ID="hd_dyn" runat="server" />
    <ajax:ModalPopupExtender ID="mdlhelloWorld" TargetControlID="hd_dyn" PopupControlID="pnlShow" runat="server" />
    </div>
    </form>
</body>
</html>


protected void btnSend_Click(object sender, EventArgs e)
        {
            mdlhelloWorld.Show();
        }



as you can see, i've added " style="display: none" " to the panel.
Random Solutions  
 
programming4us programming4us