Apply them only in content page.
-
Hi i want to apply them in content page, where i want to write code. after register assembly i written code error coming, after content place holder i written there also error coming where i want to write that code, this code where i want to write? plz replay me.
-
Hi i want to apply them in content page, where i want to write code. after register assembly i written code error coming, after content place holder i written there also error coming where i want to write that code, this code where i want to write? plz replay me.
I'm not sure I understand. What error ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I'm not sure I understand. What error ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
Sample Code of my Content page
<%@ Page Language="C#" MasterPageFile="~/common/MasterPage.master" AutoEventWireup="true" CodeFile="AdminSetting.aspx.cs" Inherits="admin_AdminSetting" %> <%@ Register TagPrefix="igtbl" Namespace="Infragistics.WebUI.UltraWebGrid" Assembly="Infragistics2.WebUI.UltraWebGrid.v7.3, Version=7.3.20073.1043, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
in this page where i want to apply them? -
Sample Code of my Content page
<%@ Page Language="C#" MasterPageFile="~/common/MasterPage.master" AutoEventWireup="true" CodeFile="AdminSetting.aspx.cs" Inherits="admin_AdminSetting" %> <%@ Register TagPrefix="igtbl" Namespace="Infragistics.WebUI.UltraWebGrid" Assembly="Infragistics2.WebUI.UltraWebGrid.v7.3, Version=7.3.20073.1043, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
in this page where i want to apply them?If You Dont Know Where to write ..!I think this is style sheet..! So Go to the design view of the required page drag and drop the style sheet on the page..! If i Misunderstood please explain in detail..! Exactly what do u want to do? What did you do? When is the error comming..?
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
Hi i want to apply them in content page, where i want to write code. after register assembly i written code error coming, after content place holder i written there also error coming where i want to write that code, this code where i want to write? plz replay me.
Hi, You can write this in
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> </asp:Content>
of the content page.cheers, sneha
-
If You Dont Know Where to write ..!I think this is style sheet..! So Go to the design view of the required page drag and drop the style sheet on the page..! If i Misunderstood please explain in detail..! Exactly what do u want to do? What did you do? When is the error comming..?
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
thnx a lot friend
So Go to the design view of the required page drag and drop the style sheet on the page..!
it is working for me.
-
thnx a lot friend
So Go to the design view of the required page drag and drop the style sheet on the page..!
it is working for me.
-
Hi, You can write this in
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> </asp:Content>
of the content page.cheers, sneha
hi what u send like that i written code but this error coming Error 40 Cannot switch views: Validation (XHTML 1.0 Transitional): Element 'link' cannot be nested within element 'td'. my code is like this
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server" > <link href="../App_Themes/Blue/DefStyles.css" rel="stylesheet" type="text/css" /> </asp:Content>
-
hi what u send like that i written code but this error coming Error 40 Cannot switch views: Validation (XHTML 1.0 Transitional): Element 'link' cannot be nested within element 'td'. my code is like this
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server" > <link href="../App_Themes/Blue/DefStyles.css" rel="stylesheet" type="text/css" /> </asp:Content>
Hi, You must be having a ContentPlaceHolder tag in the of the master page, you are using. Then in the content page there must be content tag having that contentPlaceHolderID. You can put the link tag in that .
cheers, sneha
modified on Tuesday, November 17, 2009 6:14 AM