1

下のリンクは正常に機能しますが、Url.Content を使用したいだけです。アドバイスをお願いします。

 $('#btnAddConsumer').click(function () {
        window.open('/ProductDetails/AddNewProduct/', 'AddProduct', 'height=' + (window.screen.height - 470) + ',width=820,left=' + (window.screen.width - 5) + ',top=10,status=no,toolbar=no,resizable=yes,scrollbars=yes');
    });
4

2 に答える 2

0

以下のコードを試してください

$('#btnAddConsumer').click(function () {
        window.open('@Url.Content("~/ProductDetails/AddNewProduct/")', 'AddProduct', 'height=' + (window.screen.height - 470) + ',width=820,left=' + (window.screen.width - 5) + ',top=10,status=no,toolbar=no,resizable=yes,scrollbars=yes');
    });
于 2013-06-06T03:15:39.273 に答える
0

UrlHelper の Action メソッドが必要だと思います。

'#btnAddConsumer').click(function () {
        window.open('@Url.Action("AddNewProduct", "ProductDetails")', 'AddProduct', 'height=' + (window.screen.height - 470) + ',width=820,left=' + (window.screen.width - 5) + ',top=10,status=no,toolbar=no,resizable=yes,scrollbars=yes');
    });
于 2013-06-06T03:17:23.797 に答える