23 lines
594 B
C#
23 lines
594 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace WeiXin.WebSite
|
|
{
|
|
public partial class News : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (Request["Guid"] != null)
|
|
Label1.Text = "传递的参数为:" + Request["Guid"];
|
|
if (Request["ImageUrl"] != null)
|
|
{
|
|
Label1.Visible=false;
|
|
Image1.ImageUrl= Request["ImageUrl"];
|
|
}
|
|
}
|
|
}
|
|
} |