9. 생성된 웹 폼을 디자인 보기에서 마우스로 더블클릭하거나 솔루션 탐색기에서 FrmRequestUser HostAddress.aspx.cs 파일을 더블클릭해 코드 숨김 파일로 이동한 후 다음과 같이 프로그램을 작성한다.
▼ FrmRequestUserHostAddress.aspx.cs
using System; namespace DevASPNET { public partial class FrmRequestUserHostAddress : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { // 웹 폼에서 현재 접속자의 IP 주소 얻기 this.Label1.Text = Request.UserHostAddress; // 추천 this.Label2.Text = Request.ServerVariables[“REMOTE_HOST”]; this.Label3.Text = Request.ServerVariables[“REMOTE_ADDR”]; } } }