hi,
with the below script in javascript I am getting the exception
too many characters in literal
var row = $('' + ');
'' + lstItems[ind].substring(0, 3) + ' ' +
'' + '<%: Html.ActionLink(' + lstItems[ind] + ',"ReDirectToDetails", "ECU", new {ECSiD = ' + lstItems[ind] + '}) %>;' + ' ' +
'' + 'Delete' + ' ' +
'
$('#tblShipping').append(row);
Here in below statement i am getting the error.
'' + '<%: Html.ActionLink(' + lstItems[ind] + ',"ReDirectToDetails", "ECU", new {ECSiD = ' + lstItems[ind] + '}) %>;' + ' ' +
can any one please help me to resolve it?
Mahesh BodepudiPosted Jul 10, 2017, 2:43 AM
Yatendrasinh JoddhaPosted Jul 7, 2017, 9:23 AM