AjaxExtensions.GlobalizationScript Method (AjaxHelper)
Returns an HTML script element that contains a reference to a globalization script that defines the culture information.
Namespace: System.Web.Mvc.Ajax
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GlobalizationScript ( _ ajaxHelper As AjaxHelper _ ) As MvcHtmlString 'Usage Dim ajaxHelper As AjaxHelper Dim returnValue As MvcHtmlString returnValue = ajaxHelper.GlobalizationScript()
Parameters
- ajaxHelper
- Type: System.Web.Mvc.AjaxHelper
The AJAX helper object that this method extends.
Return Value
Type: System.Web.Mvc.MvcHtmlStringA script element whose src attribute is set to the globalization script, as in the following example:
<script type="text/javascript"
src="/MvcApplication1/Scripts/Globalization/en-US.js"></script>
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type AjaxHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108).aspx or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).aspx.
Show: