Click here to Skip to main content
15,922,584 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralSQL Exception Pin
SreejithAchutan7-Jan-08 22:53
SreejithAchutan7-Jan-08 22:53 
GeneralRe: SQL Exception Pin
SreejithAchutan7-Jan-08 23:31
SreejithAchutan7-Jan-08 23:31 
GeneralRe: SQL Exception Pin
janet20087-Jan-08 23:53
janet20087-Jan-08 23:53 
GeneralRe: SQL Exception Pin
SreejithAchutan8-Jan-08 0:39
SreejithAchutan8-Jan-08 0:39 
GeneralRe: SQL Exception Pin
SreejithAchutan8-Jan-08 17:09
SreejithAchutan8-Jan-08 17:09 
QuestionHow to Add items from DropDown to the Exiting Main Menu Pin
mrgaddam7-Jan-08 22:36
mrgaddam7-Jan-08 22:36 
AnswerRe: How to Add items from DropDown to the Exiting Main Menu Pin
Christian Graus7-Jan-08 22:52
protectorChristian Graus7-Jan-08 22:52 
GeneralRe: How to Add items from DropDown to the Menu in C# Pin
mrgaddam7-Jan-08 23:07
mrgaddam7-Jan-08 23:07 
Hi
Mr Christian Graus

I have Taken Menu Control in (2.0)

And My Name of the Page is Menu.aspx

that coding is

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server" >
<asp:Menu ID="Menu1" runat="server" Font-Names="Verdana" Font-Size="0.8em"
ForeColor="White" Height="14px" Orientation="Horizontal"
StaticEnableDefaultPopOutImage="False" StaticSubMenuIndent="10px"
Style="clear: right; display: inline; font-weight: bold; list-style-position: outside; font-size: 15pt; float: none; text-transform: capitalize; color: purple; list-style-type: circle; text-align: justify; text-decoration: underline"
Width="100%" > <%--DataSourceID="SiteMapDataSource1" --%><StaticMenuStyle BackColor="#01145a" />
<StaticMenuItemStyle Font-Size="Small" HorizontalPadding="5px" VerticalPadding="2px" Font-Bold="true" />
<DynamicHoverStyle BackColor="#cccdd5" ForeColor="#01145a" Font-Underline="true" Font-Bold="true" />
<DynamicMenuStyle BackColor="#cccdd5" BorderColor="#ff0000" Font-Bold="true" />
<StaticSelectedStyle BackColor="Fuchsia" BorderColor="Blue" ForeColor="White" Font-Bold="true" />
<DynamicSelectedStyle BackColor="Lime" BorderColor="White" Font-Bold="true" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" Font-Bold="true" />
<StaticHoverStyle BackColor="#01145a" ForeColor="White" />
</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="false" />
<table width="100%" >
<tr>
<td align="center" >
<asp:DropDownList ID="ddlMenu" runat="server" Width="200px" Height="22px">
<asp:ListItem Value ="Select">--------------------Select-------------------</asp:ListItem>
<asp:ListItem Value ="Sub1">Sub1</asp:ListItem>
<asp:ListItem Value ="Sub1">Sub2</asp:ListItem>
<asp:ListItem Value ="Sub1">Sub3</asp:ListItem>
<asp:ListItem Value ="Sub1">Sub4</asp:ListItem>
<asp:ListItem Value ="Sub1">Sub5</asp:ListItem>
<asp:ListItem Value ="Sub1">Sub6</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td align="center">
<asp:TextBox ID="txtMenu" runat="server" Width="180px" Height="20px"></asp:TextBox>
<asp:Button ID="btnMenu" runat="server" Width="70px" Text="AddMenu" onclick="btnMenu_Click" />
</td>
</tr>
</table>

</asp:Content>


And I have Bounded data through Web.SiteMap thst coding is

<siteMap>
<siteMapNode title="Default" description="Home" url="menu.aspx" >

<siteMapNode title="Admin" description="Admin" >
<siteMapNode title="LogIn" url="~/KotakLogin/LogIn.aspx" />
<siteMapNode title="ChangePassword" url="~/KotakLogin/ChangePassword.aspx" />
<siteMapNode title="ResetPassword" url="~/KotakLogin/ResetPassword.aspx" />
</siteMapNode>
<siteMapNode title="Users" description="Users" >
<siteMapNode title="Default ErrorPage" url="DefaultErrorPage.aspx" />
<siteMapNode title="Query Builder" url="~/Admin/QueryBuilder.aspx" />
<siteMapNode title="View QueryBuilder" url="~/Admin/ViewQueryBuilder.aspx" />
</siteMapNode>

<siteMapNode title="Sales" description="Sales" >
<siteMapNode title="SecurityQuestion" url="~/KotakLogin/SecurityQuestion.aspx" />
<siteMapNode title="FisrtLoginChangePassword" url="~/KotakLogin/FisrtLoginChangePassword.aspx" />
</siteMapNode>

<siteMapNode title="Reports" description="Reports" >
<siteMapNode title="RequestForUserRegistration" url="~/KotakLogin/RequestForUserRegistration.aspx" />
<siteMapNode title="UserRegistrationApproval" url="~/KotakLogin/UserRegistrationApproval.aspx" />
</siteMapNode>

<siteMapNode title="Questions" description="Questions" >
<siteMapNode title="Image Viewer" url="~/Admin/ImageViewer.aspx" />
<siteMapNode title="Search" url="Search.aspx" />
</siteMapNode>


</siteMapNode >
</siteMap>

Can any one give me suggestion for this on how to Follow


Thanks And Regards
chandrakanth

Chandrakanth

AnswerRe: How to Add items from DropDown to the Exiting Main Menu Pin
Declan Bright7-Jan-08 23:04
Declan Bright7-Jan-08 23:04 
GeneralManage COM with thread Pin
Piyush Vardhan Singh7-Jan-08 22:30
Piyush Vardhan Singh7-Jan-08 22:30 
GeneralRe: Manage COM with thread Pin
janet20087-Jan-08 23:56
janet20087-Jan-08 23:56 
GeneralInclude Third Party Control (FarPoin Spread) in ASP.net Tool box. Pin
Binod K7-Jan-08 22:23
Binod K7-Jan-08 22:23 
Questionhow i can check for the common letters Pin
jagan1237-Jan-08 21:44
jagan1237-Jan-08 21:44 
AnswerRe: how i can check for the common letters Pin
pmarfleet7-Jan-08 21:49
pmarfleet7-Jan-08 21:49 
GeneralRe: how i can check for the common letters Pin
jagan1237-Jan-08 22:02
jagan1237-Jan-08 22:02 
GeneralRe: how i can check for the common letters Pin
Christian Graus7-Jan-08 22:08
protectorChristian Graus7-Jan-08 22:08 
GeneralDisplay Problem Asp.net2.0 application in IE7 Pin
Parvai7-Jan-08 21:39
Parvai7-Jan-08 21:39 
GeneralRe: Display Problem Asp.net2.0 application in IE7 Pin
Christian Graus7-Jan-08 21:59
protectorChristian Graus7-Jan-08 21:59 
AnswerRe: Display Problem Asp.net2.0 application in IE7 Pin
UsmanMunier7-Jan-08 22:55
UsmanMunier7-Jan-08 22:55 
GeneralChange template Header Pin
mpavas7-Jan-08 20:46
mpavas7-Jan-08 20:46 
AnswerRe: Change template Header Pin
mpavas7-Jan-08 20:57
mpavas7-Jan-08 20:57 
AnswerRe: Change template Header Pin
UsmanMunier7-Jan-08 23:07
UsmanMunier7-Jan-08 23:07 
Generalstyles in yahoo webpage Pin
chithra.r7-Jan-08 19:38
chithra.r7-Jan-08 19:38 
GeneralRe: styles in yahoo webpage Pin
Christian Graus7-Jan-08 20:22
protectorChristian Graus7-Jan-08 20:22 
GeneralRe: styles in yahoo webpage Pin
chithra.r7-Jan-08 22:18
chithra.r7-Jan-08 22:18 

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.