尝试查看网页时出现以下错误,有人可以让我知道解决此错误的原因和解决方法:
无法显示XML页面
无法使用样式表查看XML输入。 请更正错误,然后单击“刷新”按钮,或尝试 稍后再试。
在文本内容中发现一个无效字符。错误处理 资源'http://xxxxxxxxxxx/Auth/Ncoa/pdfviewer.asp ...
%
后面的代码:
def _lookup_words(input_text):
words = input_text.split()
new_words = []
for word in words:
if word.lower() in abbr_dict:
word = abbr_dict[word.lower()]
new_words.append(word)
new_text = " ".join(new_words) # ..... change here
return new_text # ..... change here also
df['new_text'] = df['text'].apply(_lookup_words)
设计标记:
public class Ncoa_PdfViewer : Page
{
protected HtmlForm _pdfViewer;
protected void Page_Load(object sender, EventArgs e)
{
ExpressBill.XNet.UI.Services.Ncoa ncoa = new ExpressBill.XNet.UI.Services.Ncoa("NcoaServiceUri");
((WebClientProtocol)ncoa).Timeout = -1;
int clientId = int.Parse(this.Request.QueryString["clientid"]);
byte[] pdfPackage;
if (clientId == 0)
{
NcoaOwner owner = NcoaOwner.GetOwnerForPdfDisplay(this.Session);
NcoaAgent[] agents = NcoaAgent.GetAgentsForPdfDisplay(this.Session);
if (owner == null)
owner = new NcoaOwner();
if (agents == null)
agents = new NcoaAgent[0];
pdfPackage = ncoa.GetPDFPackage(owner, agents);
}
else
pdfPackage = ncoa.GetPDFPackage(clientId);
this.Response.Clear();
this.Response.ContentType = "application/pdf";
this.Response.AddHeader("content-length", Convert.ToString(pdfPackage.Length));
this.Response.BinaryWrite(pdfPackage);
this.Response.Flush();
this.Response.End();
}
}
答案 0 :(得分:0)
我认为问题是html无法读取c#或其他内容。如果要创建网站,可以使用css, js, html, svg, or php
,但不能使用c#。如果html可以读取c#,则计算机很容易被黑客入侵。 html, js, css, svg, php
是不同的编程语言,非常容易学习。如果您想了解更多详细信息,可以搜索w3school或观看youtube来开始使用。