在PHP我可以定義和使用這樣的功能:寫的WebForms語法內聯函數內
<html>
<head></head>
<body>
<?php
function processItem($item)
{
$item = $item * 10;
?>
The item is <strong><?= $item ?></strong><br />
<?php
}
?>
<?php
$items = array(1,2,3,4);
for($i = 0; $i < $items.length; $i++)
{
processItem($items[$i]);
}
?>
</body>
</html>
如果我嘗試做的在C#同樣的事情,使用<% %>
語法,它總是會拋出錯誤。它不喜歡在函數中顯示額外的文本/ html。
有人可以告訴我如何在C#中編寫上述示例嗎?我無法找到在Google中產生結果的條款
C#通常不作爲腳本語言。 –
當然可以。看到上面的http://msdn.microsoft.com/en-us/library/aa479011.aspx但我知道你必須使用aspx頁面。我不確定簡單的HTML頁面。 –