我有几个页面差不多相同,只不过表头的图片不同,我在后台经过判断网前台注入代码。实现类似于include功能
我有几个页面差不多相同,只不过表头的图片不同,我在后台经过判断网前台注入代码。实现类似于include功能执行完了看原文件代码,也有我注进去的代码,但是在前台就是不现实。看谁能帮我看看
前台
<table style="width: 910px" border="0" cellpadding="0">
<tr>
<td style="width: 100%" align="center">
<%=p_URL%>
</td>
</tr>
</table>
后台
protected string p_URL
{
get
{
string u = "";
string img = "";
try
{
u = Request["p_u"].ToString();
switch (u)
{
case "1": img = "<img src=\"~/images/i.bottom.title.gif\" />";
break;
default:
img = "ssssssss";
break;
}
}
catch { u = "1"; }
return img;
}
} --------------------编程问答-------------------- sad --------------------编程问答-------------------- protected string p_URL
改为
public string p_URL
补充:.NET技术 , ASP.NET