473,395 Members | 1,629 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Content management

JJ
Firstly, I apologise in advance if this is a stupid question - this area is
all new to me. If anyone can point me (politely) to a useful site I would
very much appreciate it.

I've built a web site utilising web parts and custom controls, and the
ability for an administrator to edit text etc on certain pages. The site
uses SQL 2005.

I want to be able to move to the next step and allow the administrator to
add/remove pages. I can see how I could load simple pages with a generic
'/showpage.aspx?ID=123' url which loads textual content, but I am not sure
how I could allow the user to add my custom controls to the database
generated page, nor how to deal with personalisation of the webparts.

Could anyone point me to some useful resources (I have googled this but
found lots of examples on how to generate the basic pages)

Be gentle...

Thanks,
JJ
Jan 2 '07 #1
4 1187
JJ
Just a thought:

If I added controls to the page by using something like:
PanelRight.Controls.Add(UserControl);

(- based on whether that page has had the control added by admin and
therefore had relevent flags set in its database record)

And then used URL re-writing so that '/showpage.aspx?ID=123' appeared as
'/About.aspx'...

- would that mean that if a user/adminstrator edited the webparts on that
page, that the personalisation would treat the page as '/About.aspx' and not
'/showpage.aspx' ?

In other words does URL rewrting allow you to use web parts and
personalisation with database based pages as you can do with 'hard coded'
pages...?

eerrr HELP!

JJ
"JJ" <ab*@xyz.comwrote in message
news:eC**************@TK2MSFTNGP02.phx.gbl...
Firstly, I apologise in advance if this is a stupid question - this area
is all new to me. If anyone can point me (politely) to a useful site I
would very much appreciate it.

I've built a web site utilising web parts and custom controls, and the
ability for an administrator to edit text etc on certain pages. The site
uses SQL 2005.

I want to be able to move to the next step and allow the administrator to
add/remove pages. I can see how I could load simple pages with a generic
'/showpage.aspx?ID=123' url which loads textual content, but I am not sure
how I could allow the user to add my custom controls to the database
generated page, nor how to deal with personalisation of the webparts.

Could anyone point me to some useful resources (I have googled this but
found lots of examples on how to generate the basic pages)

Be gentle...

Thanks,
JJ


Jan 2 '07 #2
look at the beerhouse starter kit at www.asp.net

It should give you the basic idea of how to put together a site like your
after, or you could just crib it entirely.
--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
http://www.johntimney.com/blog
"JJ" <ab*@xyz.comwrote in message
news:eC**************@TK2MSFTNGP02.phx.gbl...
Firstly, I apologise in advance if this is a stupid question - this area
is all new to me. If anyone can point me (politely) to a useful site I
would very much appreciate it.

I've built a web site utilising web parts and custom controls, and the
ability for an administrator to edit text etc on certain pages. The site
uses SQL 2005.

I want to be able to move to the next step and allow the administrator to
add/remove pages. I can see how I could load simple pages with a generic
'/showpage.aspx?ID=123' url which loads textual content, but I am not sure
how I could allow the user to add my custom controls to the database
generated page, nor how to deal with personalisation of the webparts.

Could anyone point me to some useful resources (I have googled this but
found lots of examples on how to generate the basic pages)

Be gentle...

Thanks,
JJ


Jan 2 '07 #3
JJ
Thanks John,

I have looked at that and it was a great help with other things.
Unfortunately it doesn't help with adding pages dynamically, or therefore
adding user controls to those dynamically created pages.


"John Timney (MVP)" <x_****@timney.eclipse.co.ukwrote in message
news:C6*********************@eclipse.net.uk...
look at the beerhouse starter kit at www.asp.net

It should give you the basic idea of how to put together a site like your
after, or you could just crib it entirely.
--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
http://www.johntimney.com/blog
"JJ" <ab*@xyz.comwrote in message
news:eC**************@TK2MSFTNGP02.phx.gbl...
>Firstly, I apologise in advance if this is a stupid question - this area
is all new to me. If anyone can point me (politely) to a useful site I
would very much appreciate it.

I've built a web site utilising web parts and custom controls, and the
ability for an administrator to edit text etc on certain pages. The site
uses SQL 2005.

I want to be able to move to the next step and allow the administrator to
add/remove pages. I can see how I could load simple pages with a generic
'/showpage.aspx?ID=123' url which loads textual content, but I am not
sure how I could allow the user to add my custom controls to the database
generated page, nor how to deal with personalisation of the webparts.

Could anyone point me to some useful resources (I have googled this but
found lots of examples on how to generate the basic pages)

Be gentle...

Thanks,
JJ



Jan 2 '07 #4
Take a look at tools like AXCMS,
http://www.axcms.net/en_axcms_servic...?ActiveID=7251

Its industrial strength and free to download. Probably much more the kind
of tool your after.

--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
http://www.johntimney.com/blog
"JJ" <ab*@xyz.comwrote in message
news:uc**************@TK2MSFTNGP03.phx.gbl...
Thanks John,

I have looked at that and it was a great help with other things.
Unfortunately it doesn't help with adding pages dynamically, or therefore
adding user controls to those dynamically created pages.


"John Timney (MVP)" <x_****@timney.eclipse.co.ukwrote in message
news:C6*********************@eclipse.net.uk...
>look at the beerhouse starter kit at www.asp.net

It should give you the basic idea of how to put together a site like your
after, or you could just crib it entirely.
--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
http://www.johntimney.com/blog
"JJ" <ab*@xyz.comwrote in message
news:eC**************@TK2MSFTNGP02.phx.gbl...
>>Firstly, I apologise in advance if this is a stupid question - this area
is all new to me. If anyone can point me (politely) to a useful site I
would very much appreciate it.

I've built a web site utilising web parts and custom controls, and the
ability for an administrator to edit text etc on certain pages. The site
uses SQL 2005.

I want to be able to move to the next step and allow the administrator
to add/remove pages. I can see how I could load simple pages with a
generic '/showpage.aspx?ID=123' url which loads textual content, but I
am not sure how I could allow the user to add my custom controls to the
database generated page, nor how to deal with personalisation of the
webparts.

Could anyone point me to some useful resources (I have googled this but
found lots of examples on how to generate the basic pages)

Be gentle...

Thanks,
JJ




Jan 2 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Scott | last post by:
Hi, Can I ask some advice in regards database solutions and content management solutions.? Do you have a philosophy on what is the best for databases - ASP, JSP, Cold fusion, PHP, etc. My...
12
by: jonathan.beckett | last post by:
Hi All, For the past few months I have been working on an open source Apache/PHP/MySQL content management system - and have recently made it available for download. It's still very much a...
0
by: jonathan.beckett | last post by:
Hi All, I have just made version 0.4.8 of the PluggedOut CMS Content Management System available for download - it's free, and covered by the GPL. It's still very much a work in progress...
0
by: Scott Abel | last post by:
For immediate release: The Rockley Group Content Management Workshop Series Coming to Atlanta, Seattle, Vancouver, Chicago, Washington, DC, Toronto, and Research Triangle Park Learn more:...
1
by: Epetruk | last post by:
Hello all, I'm sorry for the long post, but I think it's better if I'm as detailed as I can be so that I don't make a mistake in my choice and so that there's a clear understanding of to what...
3
by: Andrew Robinson | last post by:
Can anyone point me in the direction of a reasonable content management package that plays nicely with ASP.NET? We have a couple of corporate sites that have about 100 pages and looking for a way...
10
by: JJ | last post by:
I am needing to write a simple content management system for my web site. I've not done this before so if anyone has any link/info please could you mention them? One thing I am confused about:...
4
by: Stephen | last post by:
Hi I am using Visual Web Developer 2005 Express Edition. Could someone give me some pointers on how to include a "Content Management" facility to a web site. When I say content management -...
0
by: Scott Abel | last post by:
Tuesday, December 12, 2006 -- 10:00AM EST / 3:00 PM GMT X-Pubs presents: CMS & Change - Love it, Hate it, Master it (Scott Abel & Emma Hamer) Reserve your Webinar seat now at:...
5
by: clintonG | last post by:
No e-commerce is required. The prospective client is asking for "content management" e.g.managing photos and product descriptions and so on. During a brief telephone interview I learned the client...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.