I am developing application in vs2008/ C#3.0
Please find my below code:
ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "Test",javascript:window.open('ReportViewer.aspx?report_name=My_Report&id=77 )", true);' In the above code
77 is an hard coded value;Instead i will pass this value from the textbox. How to do it?? Please suggest.
I tried the following Code but it
did not work ! Please suggest.
ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "Test",javascript:window.open('ReportViewer.aspx?report_name=My_Report&membership_id='"+txtMembershipID.Text +"')", true); Please suggest how to do it..
Thanks !
Rohan Laghate
Best Regards,
Rohan Laghate