C#中的cookie编程简单实例与说明
程序员文章站
2024-02-29 14:16:16
复制代码 代码如下:using system;using system.collections;using system.componentmodel;using syst...
复制代码 代码如下:
using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.drawing;
using system.web;
using system.web.sessionstate;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
using system.net;
namespace webapplication5
{
/// <summary>
/// webform1 的摘要说明。
/// </summary>
public class webform1 : system.web.ui.page
{
protected system.web.ui.webcontrols.textbox textbox1;
private void page_load(object sender, system.eventargs e)
{
// 在此处放置用户代码以初始化页面
string strhostip="";
iphostentry oiphost=dns.resolve(environment.machinename);
if(oiphost.addresslist.length>0)
strhostip=oiphost.addresslist[0].tostring();
this.textbox1.text=strhostip;
}
#region web 窗体设计器生成的代码
override protected void oninit(eventargs e)
{
//
// codegen: 该调用是 asp.net web 窗体设计器所必需的。
//
initializecomponent();
base.oninit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void initializecomponent()
{
this.load += new system.eventhandler(this.page_load);
}
#endregion
}
}