17 lines
514 B
C#
17 lines
514 B
C#
using System;
|
|
|
|
namespace FineUIPro.Web.HJGL.RepairAndExpand
|
|
{
|
|
public partial class SeeFilm : PageBase
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
string repairRecordId = Request.Params["repairRecordId"];
|
|
var repairRecord = BLL.RepairRecordService.GetRepairRecordById(repairRecordId);
|
|
if (!string.IsNullOrEmpty(repairRecord.PhotoUrl))
|
|
{
|
|
imgPhoto.ImageUrl = repairRecord.PhotoUrl;
|
|
}
|
|
}
|
|
}
|
|
} |