CAESDO.Recruitment.Web.Shared_ViewApplications.lbtnViewApplication_Click C# (CSharp) 메소드

lbtnViewApplication_Click() 보호된 메소드

Redirect to the applicationReview page for this application
protected lbtnViewApplication_Click ( object sender, EventArgs e ) : void
sender object Sender has a command argument with the applicationID
e System.EventArgs
리턴 void
        protected void lbtnViewApplication_Click(object sender, EventArgs e)
        {
            string applicationID = ((LinkButton)sender).CommandArgument;

            Response.Redirect(string.Format("{0}?ApplicationID={1}", STR_ApplicationReviewaspx, applicationID));
        }