Hi,
we have an asp.net application, initially user filled the form with uploaded file once submitted the page then shows last 10 transactions in the dynamically created html table. The uploaded file is anchor tag when click on link (html anchor tag) the file displays in the new browser. To view page in codebehind dynamically created anchor tag as shown below
for (int x-0; x
{
string strpath = strLocation;
link = @"" + row["filename"].ToString() + ""
}
javascript funciton
----------------------
function goLink(file)
{
strUrl = 'file:' + file;
linkNewWin = window.opne(strUrl, linkNewWin);
linkNewWin.focus();
}
my requirement is without using javascript function need to same achieve.
Please suggest.
Thanks,
Ramesh
Ramesh
3 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ruchi SharavatPosted Aug 4, 2017, 6:55 AM
ramesh sPosted Aug 7, 2017, 5:33 AM
Gokhul VarmanPosted Aug 4, 2017, 8:34 AM