Click here to Skip to main content
15,891,905 members

Comments by Anish_Ravindran (Top 3 by date)

Anish_Ravindran 27-Mar-12 13:28pm View    
Deleted
function Test() {
var value1 = 100;
var value2 = 200;
var value3 = 300;
window.open('<%=Url.Action("Index?param1=") %> ' + value1 + '¶m2=' + value2 + '¶m3=' + value3, "", "dialogWidth:875px;dialogHeight:600px");
}
Anish_Ravindran 27-Mar-12 12:59pm View    
Please try the updated solution.
Anish_Ravindran 27-Mar-12 12:56pm View    
Deleted
Try this way.
function Test() {
var value1 = 100;
var value2 = 200;
var value3 = 300;
window.open('<%=Url.Action("Index?param1=") %> ' + value1 + '¶m2=' + value2 + '¶m3=' + value3, "", "dialogWidth:875px;dialogHeight:600px");
}