AjaxExtensions.GlobalizationScript Method
Returns an HTML script element that contains a reference to a globalization script that defines the culture information.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | GlobalizationScript(AjaxHelper) | Returns an HTML script element that contains a reference to a globalization script that defines the culture information. |
![]() ![]() | GlobalizationScript(AjaxHelper, CultureInfo) | Returns an HTML script element that contains a reference to a globalization script that defines the specified culture information. |
AjaxExtensions.GlobalizationScript Method (AjaxHelper)
Returns an HTML script element that contains a reference to a globalization script that defines the culture information.
<ExtensionAttribute> Public Shared Function GlobalizationScript ( ajaxHelper As AjaxHelper ) As MvcHtmlString
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>
AjaxExtensions.GlobalizationScript Method (AjaxHelper, CultureInfo)
Returns an HTML script element that contains a reference to a globalization script that defines the specified culture information.
<ExtensionAttribute> Public Shared Function GlobalizationScript ( ajaxHelper As AjaxHelper, cultureInfo As CultureInfo ) As MvcHtmlString
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>
| Exception | Condition |
|---|---|
| ArgumentNullException | The cultureInfo parameter is null. |

