1.Range Validator control in ASP.NET supports which type? A.Integer B.String C.Currency D.All of the above https://learn.microsoft.com/en-us/dotnet/api/system.web.ui.webcontrols.rangevalidator?view=netframework-4.8.1 2.Which approach does take less bandwidth and time to validate input data? A.Server Side Validation B.Client Side Validation C.Remote Validation D.Non of them Client side validation is a process of validating user input on the client side, usually in the browser, before it is sent to the server. This approach takes less bandwidth and time to validate input data because the data is validated on the client side, before it is sent to the server. This reduces the amount of data that needs to be sent to the server, and also reduces the amount of time it takes for the server to process the data. Additionally, client side validation can help reduce the risk of malicious input being sent to the server, as the data is validated before it is sent. 3.Which validation control is ...