Since it is possible to show/hide asp html elements without using JavaScript in ASP.net, is it possible to extend that capability so that the show/hide will look cooler with scroll or shrinking animation?
Since it is possible to show/hide asp html elements without using JavaScript in ASP.net,
Share
Showing/hiding HTML elements in asp.net is done on the server. A hidden element is either not present in the HTML source at all or is marked invisible using the CSS
Visibilityattribute.Scrolling or shrinking has to be done on the client, and the most obvious runtime there is Javascript. To achieve your effects I recommend using jQuery.