I have a drupal page with two seperate webform contents. Now if i want to add content on top of the actual form, it is mistakedly share across both pages, why is that and how can i keep the content seteprate?
Just recreated one of the Webform pages and this time things kept sepparately - weird...
Related
I need to convert simple one page web to the Wordpress side.
All I need to do is be able to change texts, not layout.
Page has a sections. How should I develop the page, to make each section text editable.
As far as I understand, in wordpress menu I will create several pages, which will represent each section in my page.
but how can I do that ? Thank you so much!
I'm developing a web site that has a master page that consists of 4 different pages that will load simultaneously (using ContentPlaceHolder).
However, when I test the website on my local machine, only one page renders at a time (depending on the URL I type in).
Is there any way that on Page Load, to tell the master (or maybe the browser?) to load all 4 pages instead of only the page that was directly requested from the browser?
A master page doesn't work like a frameset that you display other pages in, you only display a single page using the frameset.
You can have several content placeholders in the master page, but all content still comes from the same page.
If you want to have the content in separate files, you should create user controls that you can include in a page.
It sounds like you should be using iframes. Context place holders are designed so that a single page can display its content against a common theme or background - the master page.
You can have multiple context place holders but they ALL must be populated by the page being loaded. For instance, 1 master page could have a place holder for a menu and another for the content and a third for a news feed sidebar, but the aspx page using the master page has to define the content of all 3 place holders.
Maybe I'm not understanding, but add another page selecting "Web Form using Master Page" from the Add New Item dialog and then on the next window select your master page. Try navigating to the page you just added.
I think you're misunderstanding master pages, the master page does not load anything. The master page defines some common layout (and possibly code), and then you create child pages which only need to supply the content that is not defined in the master pages via the ContentPlaceHolder.
You then load the child pages, one at a time.
I have, for example, 3 different pages. All pages should have a menu div, a logo div and a footer div. All divs should be the same on every page.
Is there any way to develop only one page and when I make a change on that page, this change should appear on every other page, in ASP.NET?
You can use Master Pages. As well as that MSDN page, you can view more tutorials on the official ASP.NET site.
If you use a master page then you get that same effect. Or you can use user controls and then include them in all 3 pages.
How to create multiple sections in Content block in Drupal?
When a user visits my homepage, a mainpage will be displayed; this page will contain a few sections at the middle panel. One of these sections would be a news update section, another would be a video channel, much like how mtv UK is looking in the middle portion of the homepage.
http://lh6.ggpht.com/_SDci0Pf3tzU/Sd7SEwzEbhI/AAAAAAAAEqc/ROuP7fXkRSk/s400/section.png
What modules are needed to create this kind of website layout?
That site is using mainly Panels, and Nice Menus
A combination of the Views and Panels modules would be able to do it.
You may also want to try the composite layout module (which I find simpler to use & theme than Panels) : http://drupal.org/project/composite (unfortunately not yet available for D7)
I have a CSS file called mystyle.css. I want to attach with each and every page of my application in asp.
How Can I do this?
at the top of your asp page, then your header page holds the CSS, Javascript etc etc
normally you would have header, footer in a seperate file and my method used to be to create one single asp page, then split the code into 3 pieces.
the header
the page
my footer
Have a look at ASP.NET Master Pages Overview it may be what you are looking for.
ASP.NET master pages allow you to
create a consistent layout for the
pages in your application. A single
master page defines the look and feel
and standard behavior that you want
for all of the pages (or a group of
pages) in your application. You can
then create individual content pages
that contain the content you want to
display. When users request the
content pages, they merge with the
master page to produce output that
combines the layout of the master page
with the content from the content
page.
You can't do this. ASP does not support master pages.