我試圖創建一個應用程序MVC2本地化按鈕MVC2
我需要申請本地化應用到標籤工作正常
定位。
但我不知道如何在按鈕值中應用本地化。
我的代碼是:
<input type="submit" value="<%: MVC.App_GlobalResources.Button.LogOn_Submit %>" class="login_button_75" />
請
感謝
SURAJ幫我
我試圖創建一個應用程序MVC2本地化按鈕MVC2
我需要申請本地化應用到標籤工作正常
定位。
但我不知道如何在按鈕值中應用本地化。
我的代碼是:
<input type="submit" value="<%: MVC.App_GlobalResources.Button.LogOn_Submit %>" class="login_button_75" />
請
感謝
SURAJ幫我
我做了正確的用下面的代碼 它的工作原理很酷...
<input type="submit" value="<%: GetGlobalResourceObject("Button","LogOn_Submit") %>" class="login_button_75" />
suraj
Here is a great post關於如何實現本地化asp.net的MVC 2.你需要寫什麼爲了訪問你的資源內部的字符串如下:
鑑於資源命名空間是MyResourceNamespace
和資源名稱是MyPageResource
,你要使用的資源對象的名稱是Login_Submit
你可以寫:
<%MyREsourceNamespace.MyPageResource.Login_Submit%>
而且這適用於你的價值,你可以這樣寫:
<input type="submit" value="<%: MyREsourceNamespace.MyPageResource.Login_Submit %>" class="login_button_75" />