<script language="C#" runat="server">
void Page_Load(object sender, EventArgs e) {
string osmId = Request.QueryString["sm"];
if(osmId != null)
tutSelId.SelectedId = osmId;
}
</script>
<osm:SlideMenu
id = "tutSelID"
runat = "server"
SelectedId = "c11" >
<menuitems>
<osm:Parent id="p1">Company Home</osm:Parent>
<osm:Child id="c11" Url="tutorial_selectedid.aspx">
Entertainment
</osm:Child>
<osm:Child id="c12" Url="tutorial_selectedid.aspx">
Games
</osm:Child>
<osm:Child id="c13" Url="tutorial_selectedid.aspx">
Greeting Cards
</osm:Child>
<osm:Child id="c14" Url="tutorial_selectedid.aspx">
Downloads
</osm:Child>
<osm:Parent id="p2">System Tasks</osm:Parent>
<osm:Child id="c21" Url="tutorial_selectedid.aspx">
View system info
</osm:Child>
<osm:Child id="c22" Url="tutorial_selectedid.aspx">
Add programs
</osm:Child>
</menuitems>
</osm:SlideMenu>
| |