????????搞不懂你到底是什么意思,图片:你加个Image控件,然后this.Image1.ImageUrl = "图片绝对路径",
TXT:导入System.IO命名空间
然后定义一个变量来读取文本的路径
string filename = Server.MapPath("相对路径");
StreamReader sr = File.OpenText(filename);
//定义变量读取全部内容
string contents;
While (sr.peek() != -1)
{
contents = sr.ReadLine();
}
一定要记得关闭StreamReader
sr.colse();
[此贴子已经被作者于2006-12-7 19:58:49编辑过]