473,405 Members | 2,187 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,405 software developers and data experts.

Custom control within repeater with custom object binding - .net 1

my aspx has something like this

<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
showItem="true"/>
</ItemTemplate>
/asp:Repeater>

The DataSource for this Repeater is a CollectionBase of objects and is
assigned and bound on Page_Load.

Now I have a Calendar control that fires a SelectionChanged. I want that to
crate a new Collection of objects based on the selected date and rebound.
However it doesn't seem to keep the Container.DataItem. The control shows a
null object however the static fields are passed (i.e. the showPass shows
"true" when debugging).

What am I doing wrong? Any help would be much appreciated.

Feb 16 '06 #1
9 4665
Let me clarify.. my SelectionChanged method has

db = new dbHelper();
Repeater1.DataSource = db.GetObjects();
Repeater1.DataBind()

This doesn't work.

"Jaybuffet" wrote:
my aspx has something like this

<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
showItem="true"/>
</ItemTemplate>
/asp:Repeater>

The DataSource for this Repeater is a CollectionBase of objects and is
assigned and bound on Page_Load.

Now I have a Calendar control that fires a SelectionChanged. I want that to
crate a new Collection of objects based on the selected date and rebound.
However it doesn't seem to keep the Container.DataItem. The control shows a
null object however the static fields are passed (i.e. the showPass shows
"true" when debugging).

What am I doing wrong? Any help would be much appreciated.

Feb 16 '06 #2
I'm new to the newsgroups, do questions get answered usually here or is there
a more active site i should try posting to?

Thanks you

"Jaybuffet" wrote:
my aspx has something like this

<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
showItem="true"/>
</ItemTemplate>
/asp:Repeater>

The DataSource for this Repeater is a CollectionBase of objects and is
assigned and bound on Page_Load.

Now I have a Calendar control that fires a SelectionChanged. I want that to
crate a new Collection of objects based on the selected date and rebound.
However it doesn't seem to keep the Container.DataItem. The control shows a
null object however the static fields are passed (i.e. the showPass shows
"true" when debugging).

What am I doing wrong? Any help would be much appreciated.

Feb 16 '06 #3
Questions get answered fairly quickly here. Your question however has a few
ambiguities:

1- when you say "However it doesn't seem to keep the Container.DataItem" you
did not clarify what are you referring to. If you are referring to the
Calender that is within the RepeaterItem then what method are you using and
in which event are you attempting to get the DataItem?

2- when you say "The control shows a null object however the static fields
are passed (i.e. the showPass shows "true" when debugging)." Which control
are you referring to that has a null value? What are “static fields"? And
what is "showPass"? Is "showPass" a customized property of your control?

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
I'm new to the newsgroups, do questions get answered usually here or is there
a more active site i should try posting to?

Thanks you

"Jaybuffet" wrote:
my aspx has something like this

<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
showItem="true"/>
</ItemTemplate>
/asp:Repeater>

The DataSource for this Repeater is a CollectionBase of objects and is
assigned and bound on Page_Load.

Now I have a Calendar control that fires a SelectionChanged. I want that to
crate a new Collection of objects based on the selected date and rebound.
However it doesn't seem to keep the Container.DataItem. The control shows a
null object however the static fields are passed (i.e. the showPass shows
"true" when debugging).

What am I doing wrong? Any help would be much appreciated.

Feb 16 '06 #4
Not sure if this is correct but this is how i ended up fixing it... don't
know if its a kludge, but it seems to work.. On initial page load it sets
the obj property twice however, but oh well.

in repeater_itemcreated i put if((e.Item.Controls.Count>1) &&
(e.Item.Controls[1].GetType().Name=="mycontrol.ascx"))
((mycontrol)e.Item.Controls[1]).obj = (obj)e.Item.DataItem;

To answer your questions so maybe i can get a better solution:

Calendar is elsewhere on the page, not in a repeater. There was a typo, i
didn't mean "showPass", i meant "showItem", as the code snippet has and yes
it is a property on my ascx.

When i debug the property that sets the "obj" and I step through, the
initial page load works great. I set the repeater datasource to a collection
of objects then bind. When a breakpoint is set on the set method in the
"obj" property it is triggered on initial page_load, however, after i select
a date and then in calendar_selectionchanged i select a different datasource
(filtered based on the day) and then bind, it never reaches that breakpoint.

Don't know if i am explaing this correctly, but i am trying.

Thank you for your help!!

"Phillip Williams" wrote:
Questions get answered fairly quickly here. Your question however has a few
ambiguities:

1- when you say "However it doesn't seem to keep the Container.DataItem" you
did not clarify what are you referring to. If you are referring to the
Calender that is within the RepeaterItem then what method are you using and
in which event are you attempting to get the DataItem?

2- when you say "The control shows a null object however the static fields
are passed (i.e. the showPass shows "true" when debugging)." Which control
are you referring to that has a null value? What are “static fields"? And
what is "showPass"? Is "showPass" a customized property of your control?

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
I'm new to the newsgroups, do questions get answered usually here or is there
a more active site i should try posting to?

Thanks you

"Jaybuffet" wrote:
my aspx has something like this

<asp:Repeater id="Repeater1" runat="server">
<ItemTemplate>
<mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
showItem="true"/>
</ItemTemplate>
/asp:Repeater>

The DataSource for this Repeater is a CollectionBase of objects and is
assigned and bound on Page_Load.

Now I have a Calendar control that fires a SelectionChanged. I want that to
crate a new Collection of objects based on the selected date and rebound.
However it doesn't seem to keep the Container.DataItem. The control shows a
null object however the static fields are passed (i.e. the showPass shows
"true" when debugging).

What am I doing wrong? Any help would be much appreciated.

Feb 16 '06 #5
If I create a demo that matches the description that you posted I do not get
the problem that you got. Here is the demo:
http://www.webswapp.com/demos/feb162006.aspx

The problem you got could have happened if you had added your custom control
to the page programmatically (instead of declaratively as you posted below).

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
Not sure if this is correct but this is how i ended up fixing it... don't
know if its a kludge, but it seems to work.. On initial page load it sets
the obj property twice however, but oh well.

in repeater_itemcreated i put if((e.Item.Controls.Count>1) &&
(e.Item.Controls[1].GetType().Name=="mycontrol.ascx"))
((mycontrol)e.Item.Controls[1]).obj = (obj)e.Item.DataItem;

To answer your questions so maybe i can get a better solution:

Calendar is elsewhere on the page, not in a repeater. There was a typo, i
didn't mean "showPass", i meant "showItem", as the code snippet has and yes
it is a property on my ascx.

When i debug the property that sets the "obj" and I step through, the
initial page load works great. I set the repeater datasource to a collection
of objects then bind. When a breakpoint is set on the set method in the
"obj" property it is triggered on initial page_load, however, after i select
a date and then in calendar_selectionchanged i select a different datasource
(filtered based on the day) and then bind, it never reaches that breakpoint.

Don't know if i am explaing this correctly, but i am trying.

Thank you for your help!!

"Phillip Williams" wrote:
Questions get answered fairly quickly here. Your question however has a few
ambiguities:

1- when you say "However it doesn't seem to keep the Container.DataItem" you
did not clarify what are you referring to. If you are referring to the
Calender that is within the RepeaterItem then what method are you using and
in which event are you attempting to get the DataItem?

2- when you say "The control shows a null object however the static fields
are passed (i.e. the showPass shows "true" when debugging)." Which control
are you referring to that has a null value? What are “static fields"? And
what is "showPass"? Is "showPass" a customized property of your control?

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
I'm new to the newsgroups, do questions get answered usually here or is there
a more active site i should try posting to?

Thanks you

"Jaybuffet" wrote:

> my aspx has something like this
>
> <asp:Repeater id="Repeater1" runat="server">
> <ItemTemplate>
> <mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
> showItem="true"/>
> </ItemTemplate>
> /asp:Repeater>
>
> The DataSource for this Repeater is a CollectionBase of objects and is
> assigned and bound on Page_Load.
>
> Now I have a Calendar control that fires a SelectionChanged. I want that to
> crate a new Collection of objects based on the selected date and rebound.
> However it doesn't seem to keep the Container.DataItem. The control shows a
> null object however the static fields are passed (i.e. the showPass shows
> "true" when debugging).
>
> What am I doing wrong? Any help would be much appreciated.
>

Feb 16 '06 #6
Was this im ASP.NET 1.1? It seems like how i have (except the user control,
I set label values in Page_Load). But that doesn't seem to matter because
when stepping through i never get to the Set call.

"Phillip Williams" wrote:
If I create a demo that matches the description that you posted I do not get
the problem that you got. Here is the demo:
http://www.webswapp.com/demos/feb162006.aspx

The problem you got could have happened if you had added your custom control
to the page programmatically (instead of declaratively as you posted below).

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
Not sure if this is correct but this is how i ended up fixing it... don't
know if its a kludge, but it seems to work.. On initial page load it sets
the obj property twice however, but oh well.

in repeater_itemcreated i put if((e.Item.Controls.Count>1) &&
(e.Item.Controls[1].GetType().Name=="mycontrol.ascx"))
((mycontrol)e.Item.Controls[1]).obj = (obj)e.Item.DataItem;

To answer your questions so maybe i can get a better solution:

Calendar is elsewhere on the page, not in a repeater. There was a typo, i
didn't mean "showPass", i meant "showItem", as the code snippet has and yes
it is a property on my ascx.

When i debug the property that sets the "obj" and I step through, the
initial page load works great. I set the repeater datasource to a collection
of objects then bind. When a breakpoint is set on the set method in the
"obj" property it is triggered on initial page_load, however, after i select
a date and then in calendar_selectionchanged i select a different datasource
(filtered based on the day) and then bind, it never reaches that breakpoint.

Don't know if i am explaing this correctly, but i am trying.

Thank you for your help!!

"Phillip Williams" wrote:
Questions get answered fairly quickly here. Your question however has a few
ambiguities:

1- when you say "However it doesn't seem to keep the Container.DataItem" you
did not clarify what are you referring to. If you are referring to the
Calender that is within the RepeaterItem then what method are you using and
in which event are you attempting to get the DataItem?

2- when you say "The control shows a null object however the static fields
are passed (i.e. the showPass shows "true" when debugging)." Which control
are you referring to that has a null value? What are “static fields"? And
what is "showPass"? Is "showPass" a customized property of your control?

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:

> I'm new to the newsgroups, do questions get answered usually here or is there
> a more active site i should try posting to?
>
> Thanks you
>
> "Jaybuffet" wrote:
>
> > my aspx has something like this
> >
> > <asp:Repeater id="Repeater1" runat="server">
> > <ItemTemplate>
> > <mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
> > showItem="true"/>
> > </ItemTemplate>
> > /asp:Repeater>
> >
> > The DataSource for this Repeater is a CollectionBase of objects and is
> > assigned and bound on Page_Load.
> >
> > Now I have a Calendar control that fires a SelectionChanged. I want that to
> > crate a new Collection of objects based on the selected date and rebound.
> > However it doesn't seem to keep the Container.DataItem. The control shows a
> > null object however the static fields are passed (i.e. the showPass shows
> > "true" when debugging).
> >
> > What am I doing wrong? Any help would be much appreciated.
> >

Feb 18 '06 #7
That might be the problem. It seems on initial load in sets the obj property
and all other properties before Page_Load on the control. But after i change
the month it then does the user controls Page_Load first, then sets the
properties. What am i missing?

"Phillip Williams" wrote:
If I create a demo that matches the description that you posted I do not get
the problem that you got. Here is the demo:
http://www.webswapp.com/demos/feb162006.aspx

The problem you got could have happened if you had added your custom control
to the page programmatically (instead of declaratively as you posted below).

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
Not sure if this is correct but this is how i ended up fixing it... don't
know if its a kludge, but it seems to work.. On initial page load it sets
the obj property twice however, but oh well.

in repeater_itemcreated i put if((e.Item.Controls.Count>1) &&
(e.Item.Controls[1].GetType().Name=="mycontrol.ascx"))
((mycontrol)e.Item.Controls[1]).obj = (obj)e.Item.DataItem;

To answer your questions so maybe i can get a better solution:

Calendar is elsewhere on the page, not in a repeater. There was a typo, i
didn't mean "showPass", i meant "showItem", as the code snippet has and yes
it is a property on my ascx.

When i debug the property that sets the "obj" and I step through, the
initial page load works great. I set the repeater datasource to a collection
of objects then bind. When a breakpoint is set on the set method in the
"obj" property it is triggered on initial page_load, however, after i select
a date and then in calendar_selectionchanged i select a different datasource
(filtered based on the day) and then bind, it never reaches that breakpoint.

Don't know if i am explaing this correctly, but i am trying.

Thank you for your help!!

"Phillip Williams" wrote:
Questions get answered fairly quickly here. Your question however has a few
ambiguities:

1- when you say "However it doesn't seem to keep the Container.DataItem" you
did not clarify what are you referring to. If you are referring to the
Calender that is within the RepeaterItem then what method are you using and
in which event are you attempting to get the DataItem?

2- when you say "The control shows a null object however the static fields
are passed (i.e. the showPass shows "true" when debugging)." Which control
are you referring to that has a null value? What are “static fields"? And
what is "showPass"? Is "showPass" a customized property of your control?

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:

> I'm new to the newsgroups, do questions get answered usually here or is there
> a more active site i should try posting to?
>
> Thanks you
>
> "Jaybuffet" wrote:
>
> > my aspx has something like this
> >
> > <asp:Repeater id="Repeater1" runat="server">
> > <ItemTemplate>
> > <mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
> > showItem="true"/>
> > </ItemTemplate>
> > /asp:Repeater>
> >
> > The DataSource for this Repeater is a CollectionBase of objects and is
> > assigned and bound on Page_Load.
> >
> > Now I have a Calendar control that fires a SelectionChanged. I want that to
> > crate a new Collection of objects based on the selected date and rebound.
> > However it doesn't seem to keep the Container.DataItem. The control shows a
> > null object however the static fields are passed (i.e. the showPass shows
> > "true" when debugging).
> >
> > What am I doing wrong? Any help would be much appreciated.
> >

Feb 18 '06 #8
Any ideas on how to make this work with the setting of control properties in
the Page_Load. Try adding another property to the control that is a bool and
then setting visibility on part of the control based on that property with
the object binding still. Does it make a difference if I am doing this in C#
with codebehind. I tried modifiying your example to

<script language="VB" runat="server">
Private _obj as ArrayList

Public Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs)
label1.Text = _obj.Item(0)
Label2.Text = _obj.Item(1)
Label3.Text = _obj.Item(2)

End Sub

Public WriteOnly Property obj() As ArrayList
Set(ByVal Value As ArrayList)
_obj = Value

End Set
End Property
</script>

but it never does the Page_Load, but in my project it does.

Thanks for your help.

"Phillip Williams" wrote:
If I create a demo that matches the description that you posted I do not get
the problem that you got. Here is the demo:
http://www.webswapp.com/demos/feb162006.aspx

The problem you got could have happened if you had added your custom control
to the page programmatically (instead of declaratively as you posted below).

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
Not sure if this is correct but this is how i ended up fixing it... don't
know if its a kludge, but it seems to work.. On initial page load it sets
the obj property twice however, but oh well.

in repeater_itemcreated i put if((e.Item.Controls.Count>1) &&
(e.Item.Controls[1].GetType().Name=="mycontrol.ascx"))
((mycontrol)e.Item.Controls[1]).obj = (obj)e.Item.DataItem;

To answer your questions so maybe i can get a better solution:

Calendar is elsewhere on the page, not in a repeater. There was a typo, i
didn't mean "showPass", i meant "showItem", as the code snippet has and yes
it is a property on my ascx.

When i debug the property that sets the "obj" and I step through, the
initial page load works great. I set the repeater datasource to a collection
of objects then bind. When a breakpoint is set on the set method in the
"obj" property it is triggered on initial page_load, however, after i select
a date and then in calendar_selectionchanged i select a different datasource
(filtered based on the day) and then bind, it never reaches that breakpoint.

Don't know if i am explaing this correctly, but i am trying.

Thank you for your help!!

"Phillip Williams" wrote:
Questions get answered fairly quickly here. Your question however has a few
ambiguities:

1- when you say "However it doesn't seem to keep the Container.DataItem" you
did not clarify what are you referring to. If you are referring to the
Calender that is within the RepeaterItem then what method are you using and
in which event are you attempting to get the DataItem?

2- when you say "The control shows a null object however the static fields
are passed (i.e. the showPass shows "true" when debugging)." Which control
are you referring to that has a null value? What are “static fields"? And
what is "showPass"? Is "showPass" a customized property of your control?

--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:

> I'm new to the newsgroups, do questions get answered usually here or is there
> a more active site i should try posting to?
>
> Thanks you
>
> "Jaybuffet" wrote:
>
> > my aspx has something like this
> >
> > <asp:Repeater id="Repeater1" runat="server">
> > <ItemTemplate>
> > <mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
> > showItem="true"/>
> > </ItemTemplate>
> > /asp:Repeater>
> >
> > The DataSource for this Repeater is a CollectionBase of objects and is
> > assigned and bound on Page_Load.
> >
> > Now I have a Calendar control that fires a SelectionChanged. I want that to
> > crate a new Collection of objects based on the selected date and rebound.
> > However it doesn't seem to keep the Container.DataItem. The control shows a
> > null object however the static fields are passed (i.e. the showPass shows
> > "true" when debugging).
> >
> > What am I doing wrong? Any help would be much appreciated.
> >

Feb 20 '06 #9
Ok, now I understand the problem that you have. Let me continue to use the
sample that I put on my website to explain the issue that you described.

1- The page_load event did not fire when you added it to my sample because
the control tag of my sample had the AutoEventWireUp = "false". To have
your modification that you added to the page_load working turn the
AutoEventWireUp to true.

2- Control load event fires after the web page Load event. This means that
when you request the page first time, the Page_load (of the main page) is
triggered, the data is composed and the Control is databound to the
arraylist. Then the Control's load event fires up and the repeater is
populated.

3- Upon postback, the Page_load event is fired but because I have a
condition If Not Page.IsPostBack Then do not load the data, the Control's
Load event is fired but there is no data. Then the
Calender.SelectionChanged event is fired, it populates the data but it does
not databind because you moved the databinding to the Page_Load which
happened earlier that than the data became available.

In other words, you got to pay attention to the sequence of events. Instead
of databinding upon page load, databind upon setting the obj value of the
child control.

---
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com

"Jaybuffet" <Ja*******@discussions.microsoft.com> wrote:
Any ideas on how to make this work with the setting of control properties in the Page_Load. Try adding another property to the control that is a bool and then setting visibility on part of the control based on that property with
the object binding still. Does it make a difference if I am doing this in C# with codebehind. I tried modifiying your example to

<script language="VB" runat="server">
Private _obj as ArrayList

Public Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs)
label1.Text = _obj.Item(0)
Label2.Text = _obj.Item(1)
Label3.Text = _obj.Item(2)

End Sub

Public WriteOnly Property obj() As ArrayList
Set(ByVal Value As ArrayList)
_obj = Value

End Set
End Property
</script>

but it never does the Page_Load, but in my project it does.

Thanks for your help.

"Phillip Williams" wrote:
If I create a demo that matches the description that you posted I do not get the problem that you got. Here is the demo:
http://www.webswapp.com/demos/feb162006.aspx

The problem you got could have happened if you had added your custom control to the page programmatically (instead of declaratively as you posted below).
--
HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
"Jaybuffet" wrote:
Not sure if this is correct but this is how i ended up fixing it... don't know if its a kludge, but it seems to work.. On initial page load it sets the obj property twice however, but oh well.

in repeater_itemcreated i put if((e.Item.Controls.Count>1) &&
(e.Item.Controls[1].GetType().Name=="mycontrol.ascx"))
((mycontrol)e.Item.Controls[1]).obj = (obj)e.Item.DataItem;

To answer your questions so maybe i can get a better solution:

Calendar is elsewhere on the page, not in a repeater. There was a typo, i didn't mean "showPass", i meant "showItem", as the code snippet has and yes it is a property on my ascx.

When i debug the property that sets the "obj" and I step through, the
initial page load works great. I set the repeater datasource to a collection of objects then bind. When a breakpoint is set on the set method in the "obj" property it is triggered on initial page_load, however, after i select a date and then in calendar_selectionchanged i select a different datasource (filtered based on the day) and then bind, it never reaches that breakpoint.
Don't know if i am explaing this correctly, but i am trying.

Thank you for your help!!

"Phillip Williams" wrote:

> Questions get answered fairly quickly here. Your question however has a few > ambiguities:
>
> 1- when you say "However it doesn't seem to keep the Container.DataItem" you > did not clarify what are you referring to. If you are referring to the > Calender that is within the RepeaterItem then what method are you using and > in which event are you attempting to get the DataItem?
>
> 2- when you say "The control shows a null object however the static fields > are passed (i.e. the showPass shows "true" when debugging)." Which control > are you referring to that has a null value? What are "static fields"? And > what is "showPass"? Is "showPass" a customized property of your control? >
> --
> HTH,
> Phillip Williams
> http://www.societopia.net
> http://www.webswapp.com
>
>
> "Jaybuffet" wrote:
>
> > I'm new to the newsgroups, do questions get answered usually here or is there > > a more active site i should try posting to?
> >
> > Thanks you
> >
> > "Jaybuffet" wrote:
> >
> > > my aspx has something like this
> > >
> > > <asp:Repeater id="Repeater1" runat="server">
> > > <ItemTemplate>
> > > <mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>'
> > > showItem="true"/>
> > > </ItemTemplate>
> > > /asp:Repeater>
> > >
> > > The DataSource for this Repeater is a CollectionBase of objects and is > > > assigned and bound on Page_Load.
> > >
> > > Now I have a Calendar control that fires a SelectionChanged. I want that to > > > crate a new Collection of objects based on the selected date and rebound. > > > However it doesn't seem to keep the Container.DataItem. The control shows a > > > null object however the static fields are passed (i.e. the showPass shows > > > "true" when debugging).
> > >
> > > What am I doing wrong? Any help would be much appreciated.
> > >

Feb 21 '06 #10

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

Similar topics

3
by: anon | last post by:
I am having a hard time with makeing what I am trying to do work. I am making a questionaire web app. I have a custom control that has a label and 5 radio buttons. My problem is that each...
2
by: Thomas R | last post by:
Is is possible? In VS.NET 2003, Binding data to the repeater is easy, but when I try to add an ASP:checkbox to the .aspx page, the designer won't recognize it, hence the code view doesn't allow...
1
by: Arsen V. | last post by:
Hello, How to control the structure of the HTML inside of the ItemTemplate of the Repeater? For example, if a certain data column value is empty (or contains some specific string or number),...
3
by: WebMatrix | last post by:
I am struggling with implementing somewhat complicated UI web-control. I explored Repeater, but I am not sure if it's the best way to go. I am leaning towards writing my own custom control and...
1
by: olduncleamos | last post by:
Hello all, I am experimenting with the repeater control and ran into something that I wasn't expecting. I would appreciate if the experts can confirm or correct my understanding. Here is a...
1
by: ratnakarp | last post by:
Hi, I have a search text box. The user enters the value in the text box and click on enter button. In code behind on button click i'm writing the code to get the values from the database and...
8
by: fernandezr | last post by:
I would like to use a user control as a template inside a repeater. Some of the fields in the control should be hidden depending on whether or not there is data. I'm still a ASP .Net newbie so the...
14
by: Rolf Welskes | last post by:
Hello, I have an ObjectDataSource which has as business-object a simple array of strings. No problem. I have an own (custom) control to which I give the DataSourceId and in the custom-control...
0
by: ChopStickr | last post by:
I have a custom control that is embedded (using the object tag) in an html document. The control takes a path to a local client ini file. Reads the file. Executes the program specified in...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.