How to raise dropdownlist.selectedindex.changed event on client side?
Can this be done using javascript / jquery?
What should I include in the markup for javascripts?
<%@ Page Title="Report" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="Report.aspx.cs" Inherits="Report" %>
<%@ PreviousPageType VirtualPath="~/Top.aspx" %>
I was looking for something like this
IF SelectedValue = 2, Hide Row 1,2,3, and 4
IF SelectedValue = 3, Hide Row 11,21,31, and 41
source
share