Link to home
Start Free TrialLog in
Avatar of Unimatrix_001
Unimatrix_001Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Simple ASP.net bulletedlist click not working.

Hi,

I'm running ASP.NET 3.5. I've created a new "ASP.NET Web Application" project (Visual Studio Pro) and have added an ASP BulletedList with a couple of items, then added a Click event to the bulletedList that simply changes the back colour to blue. Thing is, this seems to do nothing at all, clicking any item in the bulletedList doesn't seem to call the server at all. The attached code is the generated HTML. Is there something missing?

Thanks,
Uni
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head><title>
	Untitled Page
</title></head>
<body>
    <form name="form1" method="post" action="Default.aspx" id="form1">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTQ5MzkyNTM3MQ9kFgICAw9kFgICAQ8QZGQWAGRkb24MBzZkToxCj1iUca7Y7j4o+mQ=" />
</div>

    <div>
        <ul id="BulletedList1">
	<li>H</li><li>I</li>
</ul>
    </div>
    </form>
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of robasta
robasta
Flag of Zimbabwe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Unimatrix_001

ASKER

That does nicely - thanks. :)