Hi,
I strongly believe that the problem is with the
Rendering problem.
The problem might be with
escaping of Double quotes(") or
Single Quotes(') chars
So what I can give a solution like,
Remove the
OnClick event (event wire).
<asp:LinkButton ID="lnkInsert" runat="server" Text="Insert" OnClick="lnkInsert_Click" />
And we will give the event or javascript directly from code.
from PageLoad or somewhere,
lnkInsert.Attributes["href"] = "javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions('"+ cmdAppQuote.ClientID +"', '', true, '', '', false, true))";
also try this too.
lnkInsert.Attributes["href"] = "javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(\"" + cmdAppQuote.ClientID + "\", \"\", true, \"\", \"\", false, true))";
please mark helpful if it seems to be that
by,
Sreekumar P