Something tells me you probably copied this code from somewhere.
Class here is used to call the CSS (cascading style sheets) formatting
that has been called scrollContainer.
Here's an example: (typed here and not checked for accuracy)
<div id="foo" class="Example" runat="server">
</div>
Example CSS file (exampleCSS.css):
Example
{
width:10px;
height: 5px;
}
On Mar 30, 6:46 am, stapes <[email protected]> wrote:
> I have the following code in my project (ASP.NET C# Web app):
>
> <div id="scroll"
> class="scrollContainer"
> runat="server"
> style="overflow:auto; width:1000px; padding-left:5px
> ">
>
> I cannot find the class "scrollContainer" defined anywhere in my
> project, so where does this class come from. It is working correctly
> in most cases, but not on a few. I need to be able to see the
> definition and possibly amend it.