【发布时间】:2021-11-12 21:21:05
【问题描述】:
您好,我想在单击锚标记时使用 Web 方法显示来自 DB 的 html 页面。我从 db 获取 html,但无法在 iframe 中显示。 html页面以二进制格式存储,我将转换回来。当我尝试通过字符串传递 html 时,我无法显示 html 页面。请帮忙
$('#frmDisplay').on('load', function () {
$('#frmDisplay').contents().find('a.anchorLink').click(function () {
var id = $(this).attr('id');
<%-- var hid = document.getElementById('<%= HiddenField6.ClientID %>');
hid.value = id;--%>
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Amm.aspx/getlink",
data: "{'Id': '" + id + "'}",
dataType: "json",
success: function (data) {
$("#frmDisplay").attr('src', data.d);
},
error: function (response) {
alert(response.responseText);
}
});
});
});
public static string getlink(int Id)
{
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connString"].ConnectionString);
string link = "extlink";
BookTree obj = new BookTree();
DataSet ds = obj.getlink(Id);
SqlCommand cmd=new SqlCommand("select vcFilePath from tblBookNodes where iModuleId='" + Id + "'",conn);
conn.Open();
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
bytes = (byte[])dr["vcFilePath"];
}
string fileName = link.Replace(" ", "_") + ".htm";
// DirectoryInfo strPath = new DirectoryInfo(HttpContext.Current.Server.MapPath(@"~/Linking/"));
//string strPath = HttpContext.Current.Server.MapPath(@"/Linking/") + fileName;
//foreach (FileInfo file in strPath.GetFiles())
//{
// file.Delete();
//}
string path = Path.Combine(HttpContext.Current.Server.MapPath("~/Linking/"), fileName);
var doc = new HtmlDocument();
string html = Encoding.UTF8.GetString(bytes);
doc.LoadHtml(html);
StringWriter sw = new StringWriter();
var hw = new HtmlTextWriter(sw);
StreamWriter sWriter = new StreamWriter(path);
sWriter.Write(sw.ToString());
doc.Save(sWriter);
sWriter.Close();
string fileContents = html;
System.IO.File.WriteAllText(path, fileContents);
return fileContents.ToString().Trim('\n' , '\r' , '\t') ;
}
【问题讨论】: