473,657 Members | 2,478 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problems wit Databinding to a DropDown box

Hello,

I have done the following to bind data to a DropDown box:

1. Drag SQLServer table onto web form to create data connection and data
adapter.

2. Generate dataset by right-clicking on the data adapter ad selecting
generate dataset.

3. Setting the drop down box propertied to reflect so that:

Datasource = Dataset11
Datamember = table
Datatextfield = tablerow
Datavaluefield = tablerow

When I run the application I don't generate any errors, but no data is
present in the DropDown box...Well, actually I get a drop down that is
blank.

Any ideas an what Imay be doing wrong?

Also, if I code the information, can I put it in the CodeBehind file or does
it have to be in the actual ASPX?

Thanks in advance,
Kris
Nov 18 '05 #1
11 1607
Did you call the .DataBind method of the DropDown box?
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

I have done the following to bind data to a DropDown box:

1. Drag SQLServer table onto web form to create data connection and data
adapter.

2. Generate dataset by right-clicking on the data adapter ad selecting
generate dataset.

3. Setting the drop down box propertied to reflect so that:

Datasource = Dataset11
Datamember = table
Datatextfield = tablerow
Datavaluefield = tablerow

When I run the application I don't generate any errors, but no data is
present in the DropDown box...Well, actually I get a drop down that is
blank.

Any ideas an what Imay be doing wrong?

Also, if I code the information, can I put it in the CodeBehind file or does it have to be in the actual ASPX?

Thanks in advance,
Kris

Nov 18 '05 #2
I haven't explicitly called it in the code, but I have set it in the
Property page of the DropDown Box.

I did try it though and still got no results. It is strange, though...The
box seems populated in that I can drop it down, but there is no content as
there should be.

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#K******** ******@TK2MSFTN GP09.phx.gbl...
Did you call the .DataBind method of the DropDown box?
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

I have done the following to bind data to a DropDown box:

1. Drag SQLServer table onto web form to create data connection and data
adapter.

2. Generate dataset by right-clicking on the data adapter ad selecting
generate dataset.

3. Setting the drop down box propertied to reflect so that:

Datasource = Dataset11
Datamember = table
Datatextfield = tablerow
Datavaluefield = tablerow

When I run the application I don't generate any errors, but no data is
present in the DropDown box...Well, actually I get a drop down that is
blank.

Any ideas an what Imay be doing wrong?

Also, if I code the information, can I put it in the CodeBehind file or

does
it have to be in the actual ASPX?

Thanks in advance,
Kris


Nov 18 '05 #3
You can't call the DataBind method (or any method of any object for that
matter) via the design-time property box. It must be called from code. The
fact that the box drops down with noting in it is what all drop down boxes
that don't have data in them do.

Let's see your entire Page_Load event handler.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
I haven't explicitly called it in the code, but I have set it in the
Property page of the DropDown Box.

I did try it though and still got no results. It is strange, though...The
box seems populated in that I can drop it down, but there is no content as
there should be.

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#K******** ******@TK2MSFTN GP09.phx.gbl...
Did you call the .DataBind method of the DropDown box?
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote
in
message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
Hello,

I have done the following to bind data to a DropDown box:

1. Drag SQLServer table onto web form to create data connection and data adapter.

2. Generate dataset by right-clicking on the data adapter ad selecting
generate dataset.

3. Setting the drop down box propertied to reflect so that:

Datasource = Dataset11
Datamember = table
Datatextfield = tablerow
Datavaluefield = tablerow

When I run the application I don't generate any errors, but no data is
present in the DropDown box...Well, actually I get a drop down that is
blank.

Any ideas an what Imay be doing wrong?

Also, if I code the information, can I put it in the CodeBehind file

or does
it have to be in the actual ASPX?

Thanks in advance,
Kris



Nov 18 '05 #4
Here is the code:

Sub Page_Load
cbACType.DataBi nd()
End Sub

The database connection information is in my CodeBehind vb file.

Regards,
Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#Y******** ******@TK2MSFTN GP12.phx.gbl...
You can't call the DataBind method (or any method of any object for that
matter) via the design-time property box. It must be called from code. The fact that the box drops down with noting in it is what all drop down boxes
that don't have data in them do.

Let's see your entire Page_Load event handler.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
I haven't explicitly called it in the code, but I have set it in the
Property page of the DropDown Box.

I did try it though and still got no results. It is strange, though...The
box seems populated in that I can drop it down, but there is no content as there should be.

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#K******** ******@TK2MSFTN GP09.phx.gbl...
Did you call the .DataBind method of the DropDown box?
"Kris Rockwell" <kr************ *************** @hybrid-learning.com>

wrote
in
message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
> Hello,
>
> I have done the following to bind data to a DropDown box:
>
> 1. Drag SQLServer table onto web form to create data connection and

data > adapter.
>
> 2. Generate dataset by right-clicking on the data adapter ad selecting > generate dataset.
>
> 3. Setting the drop down box propertied to reflect so that:
>
> Datasource = Dataset11
> Datamember = table
> Datatextfield = tablerow
> Datavaluefield = tablerow
>
> When I run the application I don't generate any errors, but no data is > present in the DropDown box...Well, actually I get a drop down that is > blank.
>
> Any ideas an what Imay be doing wrong?
>
> Also, if I code the information, can I put it in the CodeBehind file or does
> it have to be in the actual ASPX?
>
> Thanks in advance,
> Kris
>
>



Nov 18 '05 #5
Can we have the db connection code as well?

By the way, only call the DataBind method on the first page call (ViewState
will take care of keeping the dropdown list populated after that. So, your
page_load code should be:

Sub Page_Load
If Not IsPostBack Then
cbACType.DataBi nd()
End If
End Sub
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:un******** ******@TK2MSFTN GP10.phx.gbl...
Here is the code:

Sub Page_Load
cbACType.DataBi nd()
End Sub

The database connection information is in my CodeBehind vb file.

Regards,
Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#Y******** ******@TK2MSFTN GP12.phx.gbl...
You can't call the DataBind method (or any method of any object for that
matter) via the design-time property box. It must be called from code. The
fact that the box drops down with noting in it is what all drop down boxes
that don't have data in them do.

Let's see your entire Page_Load event handler.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
I haven't explicitly called it in the code, but I have set it in the
Property page of the DropDown Box.

I did try it though and still got no results. It is strange,
though...The box seems populated in that I can drop it down, but there is no
content as there should be.

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#K******** ******@TK2MSFTN GP09.phx.gbl...
> Did you call the .DataBind method of the DropDown box?
>
>
> "Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote
in
> message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
> > Hello,
> >
> > I have done the following to bind data to a DropDown box:
> >
> > 1. Drag SQLServer table onto web form to create data connection
and data
> > adapter.
> >
> > 2. Generate dataset by right-clicking on the data adapter ad selecting > > generate dataset.
> >
> > 3. Setting the drop down box propertied to reflect so that:
> >
> > Datasource = Dataset11
> > Datamember = table
> > Datatextfield = tablerow
> > Datavaluefield = tablerow
> >
> > When I run the application I don't generate any errors, but no
data is > > present in the DropDown box...Well, actually I get a drop down
that
is > > blank.
> >
> > Any ideas an what Imay be doing wrong?
> >
> > Also, if I code the information, can I put it in the CodeBehind

file or
> does
> > it have to be in the actual ASPX?
> >
> > Thanks in advance,
> > Kris
> >
> >
>
>



Nov 18 '05 #6
Well, I have kep the DB connection in the code behind page in an effort to
keep it seperate (and thus away from the eyes of curious users) from the
ASPX. In testing different methods I have deleted from the VB code at the
moment,so I will have to write it back in before I post the code. Couldn't I
use the Connection and DataAdapter objects within .NET for this?

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#t******** *****@TK2MSFTNG P12.phx.gbl...
Can we have the db connection code as well?

By the way, only call the DataBind method on the first page call (ViewState will take care of keeping the dropdown list populated after that. So, your page_load code should be:

Sub Page_Load
If Not IsPostBack Then
cbACType.DataBi nd()
End If
End Sub
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in message news:un******** ******@TK2MSFTN GP10.phx.gbl...
Here is the code:

Sub Page_Load
cbACType.DataBi nd()
End Sub

The database connection information is in my CodeBehind vb file.

Regards,
Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#Y******** ******@TK2MSFTN GP12.phx.gbl...
You can't call the DataBind method (or any method of any object for that matter) via the design-time property box. It must be called from code.
The
fact that the box drops down with noting in it is what all drop down boxes that don't have data in them do.

Let's see your entire Page_Load event handler.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote
in
message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
> I haven't explicitly called it in the code, but I have set it in the
> Property page of the DropDown Box.
>
> I did try it though and still got no results. It is strange,

though...The
> box seems populated in that I can drop it down, but there is no

content
as
> there should be.
>
> Kris
>
>
> "Scott M." <s-***@BADSPAMsnet .net> wrote in message
> news:#K******** ******@TK2MSFTN GP09.phx.gbl...
> > Did you call the .DataBind method of the DropDown box?
> >
> >
> > "Kris Rockwell"

<kr************ *************** @hybrid-learning.com> wrote
> in
> > message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
> > > Hello,
> > >
> > > I have done the following to bind data to a DropDown box:
> > >
> > > 1. Drag SQLServer table onto web form to create data connection

and data
> > > adapter.
> > >
> > > 2. Generate dataset by right-clicking on the data adapter ad

selecting
> > > generate dataset.
> > >
> > > 3. Setting the drop down box propertied to reflect so that:
> > >
> > > Datasource = Dataset11
> > > Datamember = table
> > > Datatextfield = tablerow
> > > Datavaluefield = tablerow
> > >
> > > When I run the application I don't generate any errors, but no data
is
> > > present in the DropDown box...Well, actually I get a drop down

that
is
> > > blank.
> > >
> > > Any ideas an what Imay be doing wrong?
> > >
> > > Also, if I code the information, can I put it in the CodeBehind

file or
> > does
> > > it have to be in the actual ASPX?
> > >
> > > Thanks in advance,
> > > Kris
> > >
> > >
> >
> >
>
>



Nov 18 '05 #7
Well, I have kep the DB connection in the code behind page in an effort to
keep it seperate (and thus away from the eyes of curious users) from the
ASPX. In testing different methods I have deleted from the VB code at the
moment,so I will have to write it back in before I post the code. Couldn't I
use the Connection and DataAdapter objects within .NET for this?

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#t******** *****@TK2MSFTNG P12.phx.gbl...
Can we have the db connection code as well?

By the way, only call the DataBind method on the first page call (ViewState will take care of keeping the dropdown list populated after that. So, your page_load code should be:

Sub Page_Load
If Not IsPostBack Then
cbACType.DataBi nd()
End If
End Sub
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in message news:un******** ******@TK2MSFTN GP10.phx.gbl...
Here is the code:

Sub Page_Load
cbACType.DataBi nd()
End Sub

The database connection information is in my CodeBehind vb file.

Regards,
Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#Y******** ******@TK2MSFTN GP12.phx.gbl...
You can't call the DataBind method (or any method of any object for that matter) via the design-time property box. It must be called from code.
The
fact that the box drops down with noting in it is what all drop down boxes that don't have data in them do.

Let's see your entire Page_Load event handler.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote
in
message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
> I haven't explicitly called it in the code, but I have set it in the
> Property page of the DropDown Box.
>
> I did try it though and still got no results. It is strange,

though...The
> box seems populated in that I can drop it down, but there is no

content
as
> there should be.
>
> Kris
>
>
> "Scott M." <s-***@BADSPAMsnet .net> wrote in message
> news:#K******** ******@TK2MSFTN GP09.phx.gbl...
> > Did you call the .DataBind method of the DropDown box?
> >
> >
> > "Kris Rockwell"

<kr************ *************** @hybrid-learning.com> wrote
> in
> > message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
> > > Hello,
> > >
> > > I have done the following to bind data to a DropDown box:
> > >
> > > 1. Drag SQLServer table onto web form to create data connection

and data
> > > adapter.
> > >
> > > 2. Generate dataset by right-clicking on the data adapter ad

selecting
> > > generate dataset.
> > >
> > > 3. Setting the drop down box propertied to reflect so that:
> > >
> > > Datasource = Dataset11
> > > Datamember = table
> > > Datatextfield = tablerow
> > > Datavaluefield = tablerow
> > >
> > > When I run the application I don't generate any errors, but no data
is
> > > present in the DropDown box...Well, actually I get a drop down

that
is
> > > blank.
> > >
> > > Any ideas an what Imay be doing wrong?
> > >
> > > Also, if I code the information, can I put it in the CodeBehind

file or
> > does
> > > it have to be in the actual ASPX?
> > >
> > > Thanks in advance,
> > > Kris
> > >
> > >
> >
> >
>
>



Nov 18 '05 #8
Kris,

All of your compiled code goes in the code-behind. That is what it is there
for. Even if you use the Visual DataAdapter and Connection controls, you
are still working with code in the code-behind. When you use those
controls, code is written for you in the code-behind, instead of you
declaring and configuring the classes yourself.

Regardless of whether or not you use the controls or write the code
yourself, we need to see your code in order to help you solve your problem.

Since all it really takes to get the DropDownList control working is to set
its DataSource and DataField properties and then to call its DataBind method
on the first page call (and you seem to have done that), we can assume that:

either your database connection is not setup correctly or
you are connecting to the db, but not retuning any data

We won't know until you provide us with everything you have.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:uG******** *****@TK2MSFTNG P09.phx.gbl...
Well, I have kep the DB connection in the code behind page in an effort to
keep it seperate (and thus away from the eyes of curious users) from the
ASPX. In testing different methods I have deleted from the VB code at the
moment,so I will have to write it back in before I post the code. Couldn't I use the Connection and DataAdapter objects within .NET for this?

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#t******** *****@TK2MSFTNG P12.phx.gbl...
Can we have the db connection code as well?

By the way, only call the DataBind method on the first page call (ViewState
will take care of keeping the dropdown list populated after that. So,

your
page_load code should be:

Sub Page_Load
If Not IsPostBack Then
cbACType.DataBi nd()
End If
End Sub
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:un******** ******@TK2MSFTN GP10.phx.gbl...
Here is the code:

Sub Page_Load
cbACType.DataBi nd()
End Sub

The database connection information is in my CodeBehind vb file.

Regards,
Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#Y******** ******@TK2MSFTN GP12.phx.gbl...
> You can't call the DataBind method (or any method of any object for that > matter) via the design-time property box. It must be called from code. The
> fact that the box drops down with noting in it is what all drop down

boxes
> that don't have data in them do.
>
> Let's see your entire Page_Load event handler.
>
>
> "Kris Rockwell" <kr************ *************** @hybrid-learning.com>

wrote
in
> message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
> > I haven't explicitly called it in the code, but I have set it in the > > Property page of the DropDown Box.
> >
> > I did try it though and still got no results. It is strange,
though...The
> > box seems populated in that I can drop it down, but there is no

content
as
> > there should be.
> >
> > Kris
> >
> >
> > "Scott M." <s-***@BADSPAMsnet .net> wrote in message
> > news:#K******** ******@TK2MSFTN GP09.phx.gbl...
> > > Did you call the .DataBind method of the DropDown box?
> > >
> > >
> > > "Kris Rockwell" <kr************ *************** @hybrid-learning.com> > wrote
> > in
> > > message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
> > > > Hello,
> > > >
> > > > I have done the following to bind data to a DropDown box:
> > > >
> > > > 1. Drag SQLServer table onto web form to create data

connection and
> data
> > > > adapter.
> > > >
> > > > 2. Generate dataset by right-clicking on the data adapter ad
selecting
> > > > generate dataset.
> > > >
> > > > 3. Setting the drop down box propertied to reflect so that:
> > > >
> > > > Datasource = Dataset11
> > > > Datamember = table
> > > > Datatextfield = tablerow
> > > > Datavaluefield = tablerow
> > > >
> > > > When I run the application I don't generate any errors, but no

data
is
> > > > present in the DropDown box...Well, actually I get a drop down

that
is
> > > > blank.
> > > >
> > > > Any ideas an what Imay be doing wrong?
> > > >
> > > > Also, if I code the information, can I put it in the
CodeBehind file
> or
> > > does
> > > > it have to be in the actual ASPX?
> > > >
> > > > Thanks in advance,
> > > > Kris
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #9
Kris,

All of your compiled code goes in the code-behind. That is what it is there
for. Even if you use the Visual DataAdapter and Connection controls, you
are still working with code in the code-behind. When you use those
controls, code is written for you in the code-behind, instead of you
declaring and configuring the classes yourself.

Regardless of whether or not you use the controls or write the code
yourself, we need to see your code in order to help you solve your problem.

Since all it really takes to get the DropDownList control working is to set
its DataSource and DataField properties and then to call its DataBind method
on the first page call (and you seem to have done that), we can assume that:

either your database connection is not setup correctly or
you are connecting to the db, but not retuning any data

We won't know until you provide us with everything you have.
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:uG******** *****@TK2MSFTNG P09.phx.gbl...
Well, I have kep the DB connection in the code behind page in an effort to
keep it seperate (and thus away from the eyes of curious users) from the
ASPX. In testing different methods I have deleted from the VB code at the
moment,so I will have to write it back in before I post the code. Couldn't I use the Connection and DataAdapter objects within .NET for this?

Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#t******** *****@TK2MSFTNG P12.phx.gbl...
Can we have the db connection code as well?

By the way, only call the DataBind method on the first page call (ViewState
will take care of keeping the dropdown list populated after that. So,

your
page_load code should be:

Sub Page_Load
If Not IsPostBack Then
cbACType.DataBi nd()
End If
End Sub
"Kris Rockwell" <kr************ *************** @hybrid-learning.com> wrote in
message news:un******** ******@TK2MSFTN GP10.phx.gbl...
Here is the code:

Sub Page_Load
cbACType.DataBi nd()
End Sub

The database connection information is in my CodeBehind vb file.

Regards,
Kris
"Scott M." <s-***@BADSPAMsnet .net> wrote in message
news:#Y******** ******@TK2MSFTN GP12.phx.gbl...
> You can't call the DataBind method (or any method of any object for that > matter) via the design-time property box. It must be called from code. The
> fact that the box drops down with noting in it is what all drop down

boxes
> that don't have data in them do.
>
> Let's see your entire Page_Load event handler.
>
>
> "Kris Rockwell" <kr************ *************** @hybrid-learning.com>

wrote
in
> message news:eD******** ******@TK2MSFTN GP12.phx.gbl...
> > I haven't explicitly called it in the code, but I have set it in the > > Property page of the DropDown Box.
> >
> > I did try it though and still got no results. It is strange,
though...The
> > box seems populated in that I can drop it down, but there is no

content
as
> > there should be.
> >
> > Kris
> >
> >
> > "Scott M." <s-***@BADSPAMsnet .net> wrote in message
> > news:#K******** ******@TK2MSFTN GP09.phx.gbl...
> > > Did you call the .DataBind method of the DropDown box?
> > >
> > >
> > > "Kris Rockwell" <kr************ *************** @hybrid-learning.com> > wrote
> > in
> > > message news:Od******** ******@TK2MSFTN GP09.phx.gbl...
> > > > Hello,
> > > >
> > > > I have done the following to bind data to a DropDown box:
> > > >
> > > > 1. Drag SQLServer table onto web form to create data

connection and
> data
> > > > adapter.
> > > >
> > > > 2. Generate dataset by right-clicking on the data adapter ad
selecting
> > > > generate dataset.
> > > >
> > > > 3. Setting the drop down box propertied to reflect so that:
> > > >
> > > > Datasource = Dataset11
> > > > Datamember = table
> > > > Datatextfield = tablerow
> > > > Datavaluefield = tablerow
> > > >
> > > > When I run the application I don't generate any errors, but no

data
is
> > > > present in the DropDown box...Well, actually I get a drop down

that
is
> > > > blank.
> > > >
> > > > Any ideas an what Imay be doing wrong?
> > > >
> > > > Also, if I code the information, can I put it in the
CodeBehind file
> or
> > > does
> > > > it have to be in the actual ASPX?
> > > >
> > > > Thanks in advance,
> > > > Kris
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #10

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

Similar topics

8
278
by: Kris Rockwell | last post by:
Hello, I have done the following to bind data to a DropDown box: 1. Drag SQLServer table onto web form to create data connection and data adapter. 2. Generate dataset by right-clicking on the data adapter ad selecting generate dataset.
3
1663
by: John Blair | last post by:
Hi, I want to select an id column and a name column from the database and have the results databound to a SINGLE dropdown control with the value property matched to the database id column and the name values on display to the user. Any idea how i can do this? Sample HTML showing desired result: Thanks for any help! <select name="DropDown1" id="DropDown1">
13
5333
by: Michael Maes | last post by:
Hi, I have a UserControl containing some controls of which one is a ComboBox. All the InternalControls are Private and some are allowed to be accessed through Public Methods. One of the things I would like to do (of course) is set the DataBindings. Something clearly is wrong with the approach I use, because I can't set the Properties in the Designer, the DataSource-Property appears like 'ReadOnly', there is no "dropdown" with the list from...
0
982
by: Kevin Hodgson | last post by:
I have a ComboBox and a TextBox bound to a Dataset/datatable returned from a SQL Database. The databinding is set in Design Mode. Everything works fine on my initial fill, and I get the correct list of items in the combobox, and the textbox which is bound to a second column in the same table, changes to the appropriate value when a new item is selected in the ComboBox. The ComboBox is displaying a list of products, and the texbox the...
6
7067
by: tfsmag | last post by:
I have a Grid that I've set up to have two of the fields use dropdownlists while in edit mode. Now I can bind the data to the dropdownlists just fine. My problem is that the second dropdown depends on the first dropdown to pass a parameter to it. If I have a selectedvalue set to the second drop down, when i select a new value from the first drop down it gives me this error. "Databinding methods such as Eval(), XPath(), and Bind() can...
2
6121
by: hwiechers | last post by:
I have two drop down lists on a page. Each one is hooked up to a separate SqlDataSource. The second data source has a ControlParameter set to the selected value of the first drop down. When I set the SelectedValue of the first drop down in Page_Load, the DataBinding event of the second fires twice. This causes the second drop down to have duplicate values. Try as I might I haven't been able to get this to work. Does anyone have a solution...
1
1248
by: Rex the Strange | last post by:
I'm having a problem here and am looking for the answer. I have two listboxes. One is a dropdown and the other is a simple list of items which is databound . I want to be able to allow the user to change the value in the dropdown which would, in turn, change the values in the list. So, I create a background routine to change the sql accordingly. Create routine to respond to the event of the dropdown changing values. Set autopostback to...
0
249
by: Chris | last post by:
I am using databinding on a pair of cascading dropdowns. You select a team and get the office they can work in. When I try to rebind the second office dropdown I get the following error. Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control. I have read that this is a limitation of databinding, which is a shame. I can do the binding of dropdown data but choosing the actual...
2
1389
by: phpmel | last post by:
hi guys, I am using Visual Studio 2005. I have a dropdown list that has an associated SQLdatasource. I also have a textbox below the dropdown list that allows you to add items to the table that the datasource is associated with.After entering a new item into the table that the datasource is tied to, i would like to "refresh" the dropdown list so this is what i did manuDropDownList.Items.Clear(); manuDropDownList.DataBind(); my...
0
8420
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8324
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8842
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8516
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.