MVC :: Displaying Contents To Right Side Of Left Navigation Bar

Mar 21, 2011

My master page is left navigation bar. It displays correctly on my aspx pages, but the other content of the aspx page is displayed right underneath the master page content. I don't want anything to be displayed under the left navigation bar. I want the other stuff to be displayed on the right side of the navigation bar. Is their any way I can do that. below is my code

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/NavigationMenu.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
<%@ Import Namespace="CIS_NG.Models.Menu" %>
<asp:Content ID="Content1" ContentPlaceHolderID="titleContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server" >
<h2>Welcome to CS page</h2>
</div>
</asp:Content>

i want the "welcome to Cs page" displayed right next to my left navigation bar that is coming from my master page. I can do this to avoid it

<div style="text-align: center;"><h2>Welcome to CS-NG</h2>

but I thought if I write somthing in the content page, it will automatically come to right side of the page.

View 3 Replies


Similar Messages:

Server-side Navigation Menu Based On Html Contents?

Jul 9, 2010

I need to do some styling to a bunch of webforms, containing articles formatted in a rather uniform way. I can change any source code I want.

What I need is a quick way to dynamically create a navigation menu (on the server side) for an ASP.NET webform, based on contents of a specified div.

For example, given the following HTML:

<div id="article">
<h2 id="first">Chapter 1</h2>
<p>Some text...</p>
<h2 id="second">Chapter 2</h2>
<p>Some other text</p>
</div>

I would like to insert something like this at the end (and render it at the server side, not in a script):

<div id="navigation">
<ul>
<li><a href="#first">Chapter 1</a></li>
<li><a href="#second">Chapter 2</a></li>
</ul>
</div>

NOTE: I know I could iterate through parent div's child controls in codebehind (although I would need to make them all "run at server", or even parse the InnerHtml property of the parent div), but if feels pretty weird.

Also, I am aware that if the article was being created from a data source, I would have the content already organized, but I would like to make as little changes needed in the existing pages.

View 2 Replies

AJAX :: Accordion Control For Left Navigation Menu?

Feb 23, 2010

i want to implement an accordion control to the left navigation menu. The Main title on left menu called Activities is standard so i have hard coded it. The subtitles I want to pull from the database , from the stored procedure "Activity_Get". however i am not able to achieve this because I get an error "DataSource 'sds2 ' for control 'accActivities' doesn't exist". The following is the aspx code.

<div>
<asp:ScriptManager
ID="asm"
runat="server"
/>
<div>
<table
cellpadding="0"
cellspacing="0"
width="100%"><tr>
<td
class="highlightstitle"
style="width:180px;height:500px"
valign="top">
<aj1:Accordion
ID="accLeftMenu"
runat="server"
SelectedIndex="-1"
HeaderCssClass="navlink3" HeaderSelectedCssClass="navlink2"
ContentCssClass="subnav"
AutoSize="None"
FadeTransitions="true" TransitionDuration="250"
FramesPerSecond="40"
RequireOpenedPane="false"
SuppressHeaderPostbacks="true">
<Panes>
<aj1:AccordionPane
ID="acpEdu"
runat="server"
>
<Header>...........

View 3 Replies

Center Contents Of A Div Using Margin - Left:200px

Dec 2, 2010

I wish to make sure the contents of a div is always centered on the page. Currently using margin-left:200px;
BUt that is not great when browser changes size or shape. what can I use in sytle to center contents with in a div

View 2 Replies

Forms Data Controls :: How To Manage Left Navigation Control Like Msdn Library

Aug 27, 2010

I am trying to workaround a case where I have to design my page similar like msdn library page whew left nevigation is collepseble as well as dumemic extemded as per tje wodtj of tree item in tree .

View 1 Replies

Can An Iframe Load Its Contents At The Server Side Rather Than Client Side

Dec 21, 2010

I know that setting runat="server" and specifying an id for an iframe control, makes it accessible on the server side but what I need is that the iframe source contents get loaded at server side not client side.Is it possible?Why do I need it this way?

Currently my iframe source site is configured for ntlm authentication and sso which means it would read my windows credentials whereas I'd need it reads the credentials provided by the site which hosts that iframe.

View 2 Replies

Tabcontrol - Set Tab Pages On Left Side Of Tab Continer In 4.0?

Feb 15, 2011

I want to ask you about tab containers. Is there any way to set tab pages vertically on left side of tab container. some kind of vertical tab...Example

tabheader
tabheader (active tab) --- content

View 1 Replies

Gridview's Cell Should Be Located On Left Side

Mar 19, 2010

a) As far as I know, GridView's RowStyle-HorizontalAlign property should overwrite CSS's text-align property, and thus text inside GridView's cells should be located on the left side of the cells, but is instead moved to the right side. Why is that?

b) Similarly, RowStyle-Font-Bold should overwrite CSS's font-weight property and thus fonts shouldn't be in bold. But again, CSS's property overwrites RowStyle's Font-Bold property. Why?

<div id="someClass">
<asp:GridView ID="gvwShowUsers" runat="server" >
<RowStyle BackColor="#FFFBD6" ForeColor="#333333" Font-Bold="false"
HorizontalAlign="Left" />
<Columns>
<asp:BoundField DataField="UserName" HeaderText="UserName" />
</Columns>
</asp:GridView>
</div>
CSS file:
#someClass td
{
font-weight:bolder;
text-align:right;
}

EDIT:

A workaround would be to apply the style to each field instead (e.g. ItemStyle-HorizontalAlign)
I tried with applying ItemStyle to GridView's field:

<div id="someClass">
<asp:GridView ID="gvwShowUsers" runat="server" >
<RowStyle Font-Bold="false" HorizontalAlign="Left" />
<Columns>
<asp:BoundField DataField="UserName" HeaderText="UserName">
<ItemStyle HorizontalAlign="Left" Font-Bold="false" />
</asp:BoundField>
</Columns>
</asp:GridView>
</div>

But since even after applying ItemStyle the page still displayed text on the right side of the cells, I've decided to check the source code of a html page sent to the user, and as it turns out both <tr> and <td> elements have Align property set to left, Here is the source code of a html page:

<table id="GridView1" style="font-weight:normal;">
<tr align="center" style=" font-weight:bold;">
<th scope="col">UserName</th>
</tr>
<tr align="right" valign="bottom" style="font-weight:normal;">
<td align="right" style="font-weight:normal;"> Nancy</td>
</tr>
</table>

View 1 Replies

Web Forms :: CollapsiblePanelExtender Menu In Left Side - Sub Tabs

Oct 21, 2010

In my page I have CollapsiblePanelExtender Menu in left side. In that I have sub Tabs.

*Main Menu
-OPen
-Completed
-Manual...etc

Like that. When i click on any Tab,it displays concern page in Right Side(ie.. in that page only.no new page)

View 1 Replies

Displaying Navigation Properties On A GridView Using EntityDataSource?

Apr 4, 2011

I have an EntityDataSource I've mapped to the entity Resident which includes two navigation properties (Building1, Room1). I've set my GridView to use this EntityDataSource and set the EntityDataSource Include property to Building1, Room1 so it includes these navigation properties and have added these columns to the GridView. When I run the application instead of displaying the associated navigation property it shows this: webHousingAdmin.BuildingHow can I get it to display the actual value? Code looks like this for GridView:

<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lbl1" runat="server" Text='<%# Bind("Building1") %>' />
</ItemTemplate>
</asp:TemplateField>

I've gotten it to display the actual value by using the following code:

<asp:TemplateField HeaderText="Building">
<ItemTemplate>
<asp:Label ID="lblBuilding" Text='<%# Bind("Building1.building_name") %>' runat="server" />
</ItemTemplate>
</asp:TemplateField>

But is there a simpler way to do this? This only displays the text, doesn't let me edit it...if I can do it as a boundfield that would be ideal.

View 1 Replies

How To Preserve Literal Text From Server Side When Displaying On Client Side

Mar 2, 2011

ASP.NET newbie question - fastest fingers!

I have a page that needs to pull some script off the server, including tag info, for the page. Thus:

<html><body>
blahblahblah
<%: Model.TaggedField %>
</body></html>

Problem is, the value of Model.TaggedField may include HTML tags, but the page automatically converts the tag info to <myTag> etc.

What method can I call to make the value of Model.TaggedField be transmitted verbatim to the page?

View 2 Replies

Web Forms :: Shows Bordered TextBox And Browse Button On Right Side Instead Of Left

Feb 8, 2011

I am facing problem with diplaying FileUpload control on my aspx page. The problem is that when I drag the control in design view, it is showing a bordered TextBox and a Browse button on it right side but when I run my application, the button becomes "Choose File" button and TextBox appears at the right side of the button instead of left side and also it does not have any border. When I select a file, it is only showing a file name instead of the complete path. let me know that how could I display this control the same way as it was displaying during design time? I am using below code to display the control.

<asp:FileUpload ID="FileUpload1" runat="server" Width="222px "/>

View 3 Replies

What's The Best Practice For Displaying The Contents Of A DataSet In MVC V1.0

Jul 12, 2010

I am long familiar with using the ASP.net GridView in ASP.net forms to display the contents of DataSet on a web page. What is the best practice for displaying the contents of the DataSet in ASP.net MVC? I can add the DataSet to my DataVew dictionary in my controller, but I'm unsure of how to display it in the View page.

View 2 Replies

Forms Data Controls :: Submenu Of Main Menu Should Come In The Left Side Of Everypage?

Sep 27, 2010

I am using asp.net Menu control with sitemap datasource. There is one Web.sitemap in the folder where links are saved in such a manner

<siteMapNode url="~/MainMenu.aspx" title="Software Development Solutions" description="Software Development Solutions" >
<siteMapNode url="~/submenu.aspx" title="CRM Software Application Development" description="CRM Software Application Development" />
<siteMapNode url="~/submenu.aspx" title="CRM Software Application Development" description="CRM Software Application Development" />
<siteMapNode url="~/submenu.aspx" title="CRM Software Application Development" description="CRM Software Application Development" />
<siteMapNode/>

View 2 Replies

.net - How To Know User Has Left Website Or Close Browser Window Immediately In Server Side

Sep 10, 2010

In ASP.NET, Session_End will be fired when the Session is time out then I can guess the user has left or close the Browser window in this method. But there is some delay till time out, is there any better solution?

View 2 Replies

Creating A Treeview For Displaying Folder Contents?

Feb 9, 2011

i want to create a tree view for displaying folder hierarchy

my database about folders is in sql server so there is no option in tree view for sqlserver its just showing the xml database how can i create such structure its similar to windows explorer.

View 5 Replies

Unitended Reference Comparision / Get A Value Comparison, Cast The Left Hand Side To Type 'string'?

Mar 23, 2011

I am getting this warning:Possible unintended reference comparison; to get a value comparison, cast the left hand side to type 'string'I tried this:

if (Convert.ToString(Session["message"]) == SESSIONTIMEOUT)
or
if (Session["message"].ToString() == SESSIONTIMEOUT)

But I'm still getting the above message.

View 1 Replies

Forms Data Controls :: Displaying Contents In Label Which Is Placed In <div> Tag?

Jan 4, 2010

i am displaying contents in label which is placed in <div> tag..i need to wrap the content dspalyed in label as it get exceeds <div> tag..so how to use wrapping in label?

View 6 Replies

Web Forms :: Get Contents Of DIV On Server Side?

May 7, 2015

i  want  get  html  inside  div

<div id="ss" ></div>

View 1 Replies

Web Forms :: Side Navigation Menu (Vertical Orrientation) For A Master Page?

Feb 28, 2010

I want to have a side navigation menu (Vertical Orrientation) for a master page. Now the problem is, when I created a web form and include my created masterpage, the objects inside the content placeholder of a webform appears in the bottom of the side navigation menu. I want to make the objects appear at the right side of my navigation menu. How can this be done??

View 3 Replies

Display Contents In Webpage W/ Width Greater Than Screen Without Displaying Horizontal Scrollbars?

Jun 25, 2010

It'll be hard to explain, but here goes...I have a 3-col table that measures 1200px wide... the middle column measures 800px and includes all the contents, and both remaining rows measure 200px each and have "nice-to-display-but-optional" images (each has a 200px image).On a 1400px display, my table will display with no problems. On the other hand, if the screen is 1000px, then it'll display the scrollbars so it can fit the 1200px of contents.

How can I set the table (or any other html container) so that a 1000px screen only displays what fits on the screen without displaying the scrollbar?In this case, a 1000px would display the middle 800px column, and whatever fits on the sides (half of the 200px images). But the scrollbars would not be displayed, and the images would not be altered so that they fit in the remaining space.

View 2 Replies

Forms Data Controls :: Displaying Text On The Right Hand Side Of A Column Name?

Jan 8, 2010

I needed to display data from a table in this style:

Hotel: hotel1 Destination: United States

From: UK

Hotel: hotel2 Destination: United States

From: UK

Hotel: hotel3 Destination: United States

From: UK

This would all go in a box or table, the bold text is the column names from the table, but id be quite Happy to just have them as text and not display the coloumn headers. whats the best control to display data in this way, ive messing about with different controls but cant get this layout

View 3 Replies

Web Forms :: Label Text Updated From Server Side Is Not Displaying On Page

May 7, 2015

i use asp.net and c# to build my web application.i'm trying to display message dynamically using ModalPopup extender.I add the event inside a loop and the message is selected according to my logic.My issue is that the label stays empty, it seems that the set does not take effect, so the popup comes up empty.

the code:

<asp:Panel ID="pnlMsg" runat="server" CssClass="modalPopup" Style="display: none">
<asp:Label ID="lblModalMsg" runat="server" ></asp:Label>
<asp:Button ID="btnOk" runat="server" Text="OK" />
</asp:Panel>
<asp:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="hidForModel" PopupControlID="pnlMsg"

[code]...

View 1 Replies

Web Forms :: How To Work With Navigation Menu And Assign Pages In Navigation Menu In Master Page

Aug 25, 2010

Iam using masterpage and i want to use navigation menu ,but i don't want to use sitemap concept

how to work with navigation menu and assign the pages in navigation menu in master page

View 2 Replies

How To Extract The Contents Of The Pdf File And Show The Contents In Web Page

Feb 22, 2010

I have a pdf file, how can I extract the contents of the pdf file and show the contents in one of my web page

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved