BatchBookSample.ViewCommunication.Page_Load C# (CSharp) Method

Page_Load() protected method

protected Page_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        protected void Page_Load(object sender, EventArgs e)
        {
            this.Communication = BatchBook.Communication.Get(int.Parse(Request["communicationId"]));
            this.DataBind();
        }
ViewCommunication