IsClientScriptEnabled – Checking if the client script support is requested and possible

IsClientScriptEnabled – Checking if the client script support is requested and possible

If you develop a custom control and want to give the option to output client-side javascript code, you’ll likely have a EnableClientScript that allows the developer to specify whether the js code will be generated or not. However, before generating and outputting the js, you should also check whether it is supported by the target client browser. The following function takes in input a Boolean value (that will be the value of your EnableClientScript property), and returns the same value only if javascript code is supported, otherwise it returns False.

' Return True if client script support is requested and possibleFunction IsClientScriptEnabled(Byval value as Boolean) As Boolean    ' we need a Try block because accessing the Browser    ' property at design time may throw    Try        ' Return False if DOM version is too low.        If Page.Request.Browser.W3CDomVersion.Major < 1 Then            Return False        End If        ' Return False if EcmaScript version is too low.        If Page.Request.Browser.EcmaScriptVersion.CompareTo(New Version(1, _            2)) < 0 Then            Return False        End If        ' if all tests passed, return the input value        IsClientScriptEnabled = value    Catch        ' return False if any error occurs        Return False    End TryEnd Function

Within the method where you generate the control’s output code (for example from the overridden Render method), instead of doing something like this:

If EnableClientScript Then   ' generate and output javascript codeEnd If

You’ll do:

If IsClientScriptEnabled(EnableClientScript) Then   ' generate and output javascript codeEnd If

Note: This code is taken from Francesco Balena’s Programming Microsoft Visual Basic .NET – MS Press 2002, ISBN 0735613753.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing