| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Data;
- using System.Text;
- using System.Web.UI.WebControls;
- using ServiceReference;
- public partial class Plist : System.Web.UI.Page
- {
- public IPowerMettersService services;
- public string guid;
- public string text;
- protected void Page_Load(object sender, EventArgs e)
- {
- services = new PowerMettersServiceClient();
- guid = Request.QueryString["guid"] == null ? "" : Request.QueryString["guid"].ToString();
- if (guid != "")
- {
- PowerMattersBase[] lm = services.GetPowerMatters(guid,"14");
- foreach (PowerMattersBase c in lm)
- {
- text = text + "<li><a class='list1_one' href='show.aspx?ROWGUID=" + c.QL_INNER_CODE + "' ><span>" + c.QL_NAME.Replace("$", "") + "</span></a><div class='list1_li_pj' onclick='javascript:window.location.href=\"naire.aspx?uid=1&ROWGUID=" + c.QL_INNER_CODE + "\"'>评价</div></li>";
- }
- }
- }
- }
|