Click here to Skip to main content
15,892,575 members
Home / Discussions / C#
   

C#

 
AnswerRe: filter datagrid bound to arraylist Pin
Kevin McFarlane15-Nov-06 4:14
Kevin McFarlane15-Nov-06 4:14 
AnswerRe: filter datagrid bound to arraylist Pin
Drew McGhie15-Nov-06 4:40
Drew McGhie15-Nov-06 4:40 
GeneralRe: filter datagrid bound to arraylist Pin
zamillia zuma15-Nov-06 4:49
zamillia zuma15-Nov-06 4:49 
GeneralRe: filter datagrid bound to arraylist Pin
Drew McGhie15-Nov-06 9:55
Drew McGhie15-Nov-06 9:55 
GeneralRe: filter datagrid bound to arraylist Pin
zamillia zuma15-Nov-06 9:56
zamillia zuma15-Nov-06 9:56 
GeneralRe: filter datagrid bound to arraylist Pin
Drew McGhie15-Nov-06 10:50
Drew McGhie15-Nov-06 10:50 
GeneralRe: filter datagrid bound to arraylist Pin
zamillia zuma17-Nov-06 0:23
zamillia zuma17-Nov-06 0:23 
QuestionMaster pages and menus Pin
lsugirljte15-Nov-06 3:37
lsugirljte15-Nov-06 3:37 
Hi,

Can anyone see the problem here? I have a very simple master page with a very simple content page. I just want a menu on the master page. There are several things that aren't working the way I would like them to.

1. The menu is horizontal and pushing the content place holder down when it's expanding down. I would like it to hover over the content page and not move it.

2. it's not displaying the items when hovering. It's just displaying a white box where the items are suppose to be.

I have been looking at this for 2 days without any progress. Can someone help me?

simple.master
***********************
<%@ Master Language="C#" AutoEventWireup="true" Codebehind="simple.master.cs" Inherits="EPMS.Frameset.simple" %>
<!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 runat="server">
<title>Simple Master</title>
<style>

.toolbar
{
font-size: 13px;
font-family: Verdana;
padding: 6px;
filter:
progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#ffffff,endColorStr=lightblue);
}


</style>
</head>
<body bgcolor="silver">
<form id="form1" runat="server">
<asp:SiteMapDataSource ID="ExampleSiteMapDS" runat="server" ShowStartingNode="false" />
<asp:Menu ID="Menu1" runat="server" Orientation="Horizontal" CssClass="toolbar" DataSourceID="ExampleSiteMapDS">
<StaticMenuStyle CssClass="toolbar" />
<StaticMenuItemStyle CssClass="toolbar" />
<DynamicHoverStyle CssClass="toolbar" />
<DynamicMenuStyle CssClass="toolbar" />
</asp:Menu>
<br />
<br />
<asp:ContentPlaceHolder ID="middleContent" runat="server">
</asp:ContentPlaceHolder>
</form>
</body>
</html>


simplepage.aspx
********************************
<%@ Page Language="C#" MasterPageFile="~/Frameset/simple.Master" AutoEventWireup="true"
Codebehind="simplepage.aspx.cs" Inherits="EPMS.EPMS_Request.simplepage" Title="Simple Page" %>

<asp:Content ID="Content1" ContentPlaceHolderID="middleContent" runat="server">
<h2>
This is the simple page.
</h2>
</asp:Content>


web.sitemap
*******************************
<?xml version="1.0" encoding="utf-8" ?>
<siteMap>
<siteMapNode title="Home">
<siteMapNode title="Products">
<siteMapNode title="Hardware" url="Default.aspx?node=hardware">
<siteMapNode title="Mouse"/>
<siteMapNode title="Keyboard"/>
<siteMapNode title="NetCard"/>
<siteMapNode title="Monitor"/>
<siteMapNode title="PC"/>
</siteMapNode>
<siteMapNode title="Software" url="Default.aspx?node=software">
<siteMapNode title="Spreadsheet"/>
<siteMapNode title="Word Processor"/>
<siteMapNode title="Presentation"/>
<siteMapNode title="Mail"/>
<siteMapNode title="Games"/>
</siteMapNode>
<siteMapNode title="Books" url="Default.aspx?node=books">
<siteMapNode title="Programming"/>
<siteMapNode title="Debugging"/>
<siteMapNode title="Testing"/>
<siteMapNode title="Web Apps"/>
<siteMapNode title="WinForm Apps"/>
</siteMapNode>
</siteMapNode>
<siteMapNode title="Services">
<siteMapNode title="Consulting" url="Default.aspx?node=consulting">
<siteMapNode title="Processes"/>
<siteMapNode title="Management"/>
<siteMapNode title="Recruiting"/>
</siteMapNode>
<siteMapNode title="Development" url="Default.aspx?node=development">
<siteMapNode title="Web Apps"/>
<siteMapNode title="Enterprise Apps"/>
<siteMapNode title="Database"/>
</siteMapNode>
</siteMapNode>
<siteMapNode title="Support">
<siteMapNode title="Drivers" url="Default.aspx?node=drivers">
<siteMapNode title="Audio"/>
<siteMapNode title="Network"/>
<siteMapNode title="Printer"/>
<siteMapNode title="Modem"/>
</siteMapNode>
<siteMapNode title="Manuals" url="Default.aspx?node=manuals">
<siteMapNode title="Applications"/>
<siteMapNode title="Troubleshooting"/>
<siteMapNode title="Installation"/>
<siteMapNode title="Internet"/>
</siteMapNode>
<siteMapNode title="Updates" url="Default.aspx?node=updates">
<siteMapNode title="Release 1"/>
<siteMapNode title="Game Package"/>
</siteMapNode>
</siteMapNode>
</siteMapNode>
</siteMap>

Thanks, Jessica
AnswerRe: Master pages and menus Pin
Stefan Troschuetz15-Nov-06 6:04
Stefan Troschuetz15-Nov-06 6:04 
AnswerRe: Master pages and menus Pin
lsugirljte15-Nov-06 6:07
lsugirljte15-Nov-06 6:07 
Questioncalculating with measurements Pin
Yustme15-Nov-06 3:35
Yustme15-Nov-06 3:35 
AnswerRe: calculating with measurements Pin
ednrgc15-Nov-06 3:42
ednrgc15-Nov-06 3:42 
GeneralRe: calculating with measurements Pin
Yustme15-Nov-06 3:49
Yustme15-Nov-06 3:49 
QuestionHow to Check for Serialport status...? Pin
IamHuM15-Nov-06 2:59
IamHuM15-Nov-06 2:59 
AnswerRe: How to Check for Serialport status...? Pin
Rey999917-Nov-06 4:39
Rey999917-Nov-06 4:39 
QuestionDetect and Read Pen drive Pin
Ravikumar Patra15-Nov-06 2:58
professionalRavikumar Patra15-Nov-06 2:58 
AnswerRe: Detect and Read Pen drive Pin
ejuanpp15-Nov-06 4:45
ejuanpp15-Nov-06 4:45 
QuestionHow to read an exact character from text file Pin
CodeItWell15-Nov-06 2:28
CodeItWell15-Nov-06 2:28 
AnswerRe: How to read an exact character from text file Pin
Tamimi - Code15-Nov-06 2:37
Tamimi - Code15-Nov-06 2:37 
AnswerRe: How to read an exact character from text file Pin
V.15-Nov-06 2:37
professionalV.15-Nov-06 2:37 
Questionhelp for enabled property Pin
vamsimohan2115-Nov-06 1:17
vamsimohan2115-Nov-06 1:17 
AnswerRe: help for enabled property Pin
stancrm15-Nov-06 2:25
stancrm15-Nov-06 2:25 
GeneralRe: help for enabled property Pin
vamsimohan2115-Nov-06 16:29
vamsimohan2115-Nov-06 16:29 
GeneralRe: help for enabled property Pin
vinSharp15-Nov-06 20:32
vinSharp15-Nov-06 20:32 
Questionneed to convert INSTR() INTO C# Pin
M Riaz Bashir15-Nov-06 0:58
M Riaz Bashir15-Nov-06 0:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.