Ask a Question related to ASP.NET General, Design and Development.
-
Quentin #1
[ASCX] Add an ascx in a webcontrol...
hey there,
ok i made a class, that inherits webcontrol, and i add an htmltable to it. I
was wondering how to declare an ascx file as an object in my class, like
that i could change the content (the ascx file) of a cell thanks to a
property and it would be great :)
Merci d'avance pour l'aide :)
Quentin Guest
-
ASP.NET 2.0 BUG with ASCX controls
My application runs fine for a long while then, all of a sudden my it starts getting this error pointing to my ascx control in the call stack ... -
FormAuthentication on ascx files
Hi, I have a default.aspx page which has PlaceHolder where it will call different *.acx file based on the request url. eg... -
ascx... again :'(
Hello, I got a Solution, containing two projects, a project of classes, and a web project. The two projects directories are not located in the... -
ascx... in a class.vb
I made a class in an other file than the aspx one. This class is juste an HtmlTable, it looks like a window, and i'd like to add a property to this... -
Placehoder and ASCX
you could pass to your placeholder1 a reference to placeholder2... so from inside placeholder1's ascx u could write something like this: ... -
Quentin #2
Re: [ASCX] Add an ascx in a webcontrol...
thank you for your response :)
But i'm not sure i explained my problem well... I made a class in an other
file than the aspx one. This class is juste an HtmlTable, it looks like a
window, and i'd like to add a property to this class as to add an ascx in a
cell. My english is not so good so let me give you an example.
--------MesClasses.vb-----------------------
Public Class MaFenetre : inherits WebControl
Public Sub New()
Dim Fenetre As New HtmlTable
Dim MaLigne As New HtmlTableRow
Dim MaCellule As New HtmlTableCell
Dim MyObjectAscx As ?????
MaCellule.Controls.Add(MyObjectAscx)
MaLigne.Cells.Add(MaCellule)
Fenetre.Rows.Add(MaLigne)
Fenetre.Width = "100%"
Fenetre.height = "100%"
Me.Controls.Add(Fenetre)
End Sub
Public Property InnerPage As String
Get
Return InnerPage
End Get
Set(ByVal Value As String)
InnerPage = Value
MyObjectAscx.Path = InnerPage
End Set
End Property
End Class
Where InnerPage is the path of the *.ascx file. But the thing i don't know
is how to declare the future object that will be the ascx file in my
class...
Thank you for your help.
"Swanand Mokashi" <swanand@swanandmokashi.com> a écrit dans le message de
news: [email]OVzk3VgVDHA.2164@TK2MSFTNGP10.phx.gbl[/email]...it.> say your custom control is called Menu
>
> Add this to the aspx page , to which you want to add the web control
> <%@ Register TagPrefix="Anything" TagName="Menu" SRC="Menu.ascx"%>
>
> now in the page
> <Anything:Menu runat="server" id="Menu1"/>
>
> now in page behind
> Page.FindControl("Menu1").WhateverPropertyMethod
>
>
> HTH
> --
> Swanand Mokashi
> Microsoft Certified Professional
> [url]http://www.swanandmokashi.com/[/url]
> Home of the Stock Quotes, Quote of the day and Horoscope web services
> "Quentin" <Quentin.Casasnovas@wanadoo.Fr> wrote in message
> news:ujobPjeVDHA.2288@TK2MSFTNGP12.phx.gbl...> > hey there,
> >
> > ok i made a class, that inherits webcontrol, and i add an htmltable to> I>> > was wondering how to declare an ascx file as an object in my class, like
> > that i could change the content (the ascx file) of a cell thanks to a
> > property and it would be great :)
> >
> > Merci d'avance pour l'aide :)
> >
> >
>
Quentin Guest



Reply With Quote

