Я пытаюсь отобразить HTML в электронной таблице документов Google.Файл отлично отображается при локальном просмотре в Excel.Но когда тот же файл загружается на диск и просматривается в Документах Google, HTML-разметка отображается в электронной таблице.Пытался найти параметры URI для рендеринга HTML, но не нашел ни одного.Ниже приведен блок кода при загрузке файла на диск в C #.
{
GoogleConnect.ClientId = "<CLient ID>";
GoogleConnect.ClientSecret = "<Client Secret>";
GoogleConnect.RedirectUri = Request.Url.AbsoluteUri.Split('?')[0];
GoogleConnect.API = EnumAPI.Drive;
if (!string.IsNullOrEmpty(Request.QueryString["code"]))
{
string code = Request.QueryString["code"];
string json = GoogleConnect.PostFile(code, (HttpPostedFile)Session["File"], Session["Description"].ToString());
GoogleDriveFile file = (new JavaScriptSerializer()).Deserialize<GoogleDriveFile>(json);
tblFileDetails.Visible = true;
lblTitle.Text = file.Title;
lblId.Text = file.Id;
imgIcon.ImageUrl = file.IconLink;
lblCreatedDate.Text = file.CreatedDate.ToString();
lnkDownload.NavigateUrl = file.WebContentLink;
if (!string.IsNullOrEmpty(file.ThumbnailLink))
{
rowThumbnail.Visible = true;
imgThumbnail.ImageUrl = file.ThumbnailLink;
}
}
}
I expect the Google Docs Spreadsheet show the HTML in a proper way and not the HTML markup. Thanks.