CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
web_forms
getting_started
data_presentation_controls
dotnetnuke
data_access-sql_server_sql_server_express_and_sqldatasource_control
security
client_side_web_development
novell-support-groupwise-6x-clients
data_access-data_access_and_objectdatasource_control
asp-net_ajax-asp-net_ajax_control_toolkit
novell-support-netware-6x-install-upgrade
asp-net_ajax-asp-net_ajax_discussion_and_suggestions
novell-support-netware-6x-administration-tools
master_pages_themes_and_navigation_controls
configuration_and_deployment
novell-support-netware-client-winnt-2x-xp
novell-support-groupwise-7x-clients
asp-net_ajax-asp-net_ajax_ui
novell-support-edirectory-netware
community-free_for_all
visual_studio_2005
novell-support-groupwise-6x-install-setup
data_access-xml_and_xmldatasource_control
control-cancel
novell-support-iprint
advanced_asp-net-crystal_reports
data_access-xml_web_services
microsoft-public-access
novell-community-chat
state_management
novell-support-netware-6x-abends-hangs
dotnetnuke-getting_started
novell-support-groupwise-6x-gwia
-net_languages-c
novell-support-identity-manager-engine-drivers
novell-support-groupwise-discontinued
advanced_asp-net-architecture
opensuse-org-suse-linux-support-install-configure-administration
dotnetnuke-custom_modules
novell-support-groupwise-7x-install-setup-admin
novell-support-netware-6x-storage-media
novell-support-groupwise-6x-agents
installation_and_setup
data_access-access_databases_and_accessdatasource_control
windows-hosting_open_forum
visual_web_developer_2005_express
novell-support-groupwise-6x-web-access
novell-support-netware-6x-server-backup
macromedia-dreamweaver
novell-support-netware-5x-administration-tools
novell-support-ifolder
novell-support-bordermanager-install-setup
novell-support-imanager
microsoft-public-dotnet-framework-aspnet
novell-support-netware-5x-install-upgrade
novell-support-cluster-services
novell-support-bordermanager-proxies
novell-support-newsflash
advanced_asp-net-sql_server_reporting_services
microsoft-public-dotnet-languages-csharp
web_parts_and_personalization
about_this_site-feedback_on_this_website
ibm-software-websphere-portal-server
novell-support-netware-dns-dhcp
novell-support-zenworks-desktops-4x-app-launcher
-net_languages-visual_basic_-net
advanced_asp-net-custom_server_controls
novell-support-bordermanager-vpn
novell-support-ndps-neps
microsoft-public-sqlserver-programming
novell-support-netware-webserver
community-jobs
novell-support-netware-4x
advanced_asp-net-mobile_and_handheld_devices
internet_explorer_web_controls
novell-support-zenworks-desktops-4x-install-setup
novell-support-edirectory-linux
novell-support-groupwise-7x-gwia
development_tools-web_matrix_general_discussions
microsoft-public-access-formscoding
macromedia-flash
community-announcements
portal_starter_kit
novell-support-zenworks-desktops-4x-management-agent
novell-support-zenworks-patch-management
novell-support-native-file-access
microsoft-public-access-queries
microsoft-public-access-forms
novell-support-groupwise-7x-web-access
novell-support-netware-small-business-6x
data_access-active_directory_and_ldap
novell-support-edirectory-windows
novell-support-groupwise-7x-agents
novell-support-ichain
data_access-oracle
novell-support-zenworks-desktop-management-6x-imaging
novell-support-groupwise-7x-wireless
novell-support-netware-5x-abends-hangs
advanced_asp-net-localization
novell-support-zenworks-desktop-management-7x-imaging-server-nw-win




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: Date Entered: 8/12/2004 2:28:33 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 6 Views: 31 Favorited: 0 Favorite
7 Items, 1 Pages 1 |< << Go >> >|
"void" <>
NewsGroup User
Cant get Page Theme Directive to work8/12/2004 2:28:33 PM

0

In this link (http://lab.msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_aspnetcon/html/02eed7c3-01e8-4e20-8358-df47dbd4f148.asp) theres some info about themes and how to enable them.

I can get the web.config theme setting to work, but when I try to appy the <%@ Page Theme="ThemeName" %> setting on an individual page, its says that the theme does not exists.

Any ideas why?
"Fredrik N" <>
NewsGroup User
Re: Cant get Page Theme Directive to work8/12/2004 3:50:22 PM

0

Take a look at this site
/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT

Cornerstone

My Blog, ASP.Net 2.0 etc
"void" <>
NewsGroup User
Re: Cant get Page Theme Directive to work8/12/2004 4:56:30 PM

0

Thx for the link. I still have the error though. As I said. The theme works when I set it for the entire site. But when I set the theme for the page, it gives me an error saying the theme does not exists. Oh, and the <%@ page theme="" stylesheettheme="" %> that removes themes gives an error as well.
"Fredrik N" <>
NewsGroup User
Re: Cant get Page Theme Directive to work8/12/2004 8:07:21 PM

0

It works fine for me.

Can you please describe each step you have done to create and use the themes.

/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT

Cornerstone

My Blog, ASP.Net 2.0 etc
"void" <>
NewsGroup User
Re: Cant get Page Theme Directive to work8/13/2004 7:38:59 AM

0

Hmm. There's really are no special about this:

1. Make a new 1 page website.
2. Make a theme dir and put in button skin file.
3. Put a button on the default form.
4.a Put in the page directive (using both the property editor and manually) - it fails.
4.b Put in the theme in web config file - it works.

Running VS2005 Architect beta1.
"Fredrik N" <>
NewsGroup User
Re: Cant get Page Theme Directive to work8/13/2004 10:02:52 AM

0

In your themes folder, add a new folder with the same name as your skin file, but not with (.skin). Move your .skin file into the new folder.

In the Page directive you set the Theme attribute to he name of the folder.


\Themes
\myTheme
myTheme.skin


<%@ Page Theme="myTheme" ... >


This should work.

/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT

Cornerstone

My Blog, ASP.Net 2.0 etc
"void" <>
NewsGroup User
Re: Cant get Page Theme Directive to work8/13/2004 10:54:11 AM

0

Thats exactly how I did it. My skin files, css files, etc. all work when I set the them in the condig file, but not on the page.

Never mind - I only need to be able to set it from the config file and programatically. So I'll manage ;)
7 Items, 1 Pages 1 |< << Go >> >|


Free Download:













pa question

thoughts on the state of non-free modules

where is other elearn module?

dropdownlist problem

web cam software? anyone?

(3.1.1) search for custom module

strange problem when compile a custom module

mixed authentication module by tram.

using commercial controls in dnn module development

updating a custom module

dotnetnuke and microsoft reporting services

looking for knowledgebase module

how to install 0.ttt.authentication.3.0.12.zip

postback script errors and conflicts between modules

new module: nested tables

datagrid - selectedrow

custom module and show all tab settings

any free shopping cart module for dnn3.0.12+?

fillobject - record must exit?

how to set module edit rights for register user ?

deploy to root

what is the best way to pass parameters to a module instance directly through a query string? (to bypass rendering the html of desktopdefault for example)

new module - defmatchgame

wmv player

crystal reports module

html/text module absolute path for images (help!)

creating a .ascx file that can be used in a skin

a light weight ecommerce module released

upgrade path from "newblog" ot dnn blog?

new features in dnnmasters membership management suite pro - scheduler, etc.

is it possible to develop custom modules in c# rather than vb

can one place "to build modules" anywhere?

creating my own module

nested recursive ascx control implementing itemplate applied to an inner datalist

user's gallery module?

mhtml module 01.00.00

contentlinks for dnn 2.1.2 pa conversion

localization problem - this should be easy for you guyes !

free image gallery control with inline source code

project templates for use without vs.net?

binding to users

keepalive module for dnn2 (beta)

filtering returned data in module

creating a module using notepad for dnn3

problem: passing mutiple parameters using editurl?

link to register module?

scrolling announcements in 2.0?

proper method - multiple pages

the underlying connection was closed: unable to connect to the remote server.

limits on rss

 
Search This Site:

 
  Privacy | Contact Us
All Times Are GMT