cs中的代码   
 public string list = string.Empty;
  protected void Page_Load(object sender, EventArgs e)
  {
  string sql = "select * from CaseInformation";
  SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["NOKIAConnectionString"].ConnectionString);
  SqlCommand cmd = new SqlCommand(sql, conn);
  SqlDataAdapter sda = new SqlDataAdapter(cmd);
  DataSet ds = new DataSet();
  sda.Fill(ds);
  list += "<ul>";
  foreach (DataRow dr in ds.Tables[0].Rows)
  {
  list += "<li>" + dr["Pictures"].ToString() + "<a href=\"news_list.aspx\">" + dr["title"].ToString() + "</a></li>";  }
  list += "</ul>";
  }
前台页面中的代码   
  <%=list %>
Pictures是我定义的数据中图片的命名  
我想知道怎么改变读出来的图片的大小