Hi, I am using below code to embed pdf in ext tab.It is working fine in IE browser.In google chrome the tab is unable to show the pdf file.

Please help me for this.

@(Html.X().Panel().ID("ReviewTurnIn").Width(900).B order(false)
.Layout(LayoutType.Table)
.LayoutConfig(new TableLayoutConfig() { Columns = 1 }).PaddingSpec("30px 0px 0px 50px")
.Items(mainPanleItems =>
{
mainPanleItems.Add(Html.X().Label().Text("Review Turn-in").Cls("header-text"));
})

.Items(mainPanleItems =>
{
mainPanleItems.Add(Html.X().Label().CellCls("info-text").Html("This is what we’ve so far."));
})

.Items(mainPanleItems =>
{
mainPanleItems.Add(Html.X().Container().ID("PdfEmb ed").Width(850)
.Html(string.Format("<embed src='{0}' type='application/pdf' style='margin: 0 auto; width:100%; height:1000px;'></embed>",
Url.Action("ReviewTurnInPDF", new { ServiceId = ServiceId, hashcode = Request.QueryString("hashcode") }))));
})
.BottomBar(Html.X().Toolbar().BaseCls("m1-toolbar-bottom")

.Items(Html.X().Button().GrayButton(Url.Content("~/SupplierTurnIn/SupplierTurnIn/SwitchView"), CurrentWizardId),
Html.X().ToolbarFill(),
Html.X().Button().OrangeButton(Url.Content("~/SupplierTurnIn/Order/ReviewTurnIn"), CurrentWizardId, "SuccessTurnIn").Width(200).Text("Submit Turn-In")
)
)
)