472,982 Members | 2,381 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,982 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 4635
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: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

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.