AjaxExtensions::GlobalizationScript Method (AjaxHelper, CultureInfo)
Returns an HTML script element that contains a reference to a globalization script that defines the specified culture information.
Namespace: System.Web.Mvc.Ajax
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
[ExtensionAttribute] public: static MvcHtmlString^ GlobalizationScript( AjaxHelper^ ajaxHelper, CultureInfo^ cultureInfo )
Parameters
- ajaxHelper
- Type: System.Web.Mvc::AjaxHelper
The AJAX helper object that this method extends.
- cultureInfo
- Type: System.Globalization::CultureInfo
Encapsulates information about the target culture, such as date formats.
Return Value
Type: System.Web.Mvc::MvcHtmlStringAn HTML 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) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).| Exception | Condition |
|---|---|
| ArgumentNullException | The cultureInfo parameter is nullptr. |
Show: