Hi
I build a page that has a dropdownlist control bound with data from a
database. When user select an item from the dropdownlist I want a label to
be filled with a result from a stored procedure. The stored procedure takes
an ID of a selected item (@BoundID) from the dropdownlist and gives a result
(@BoundIdentifi er) as follows:
---
Running [dbo].[tbh_GetBoundIde ntifier] ( @BoundID =
cf44452b-8b05-45da-a7c6-14146fba0356, @BoundIdentifie r = <NULL).
No rows affected.
(0 row(s) returned)
@BoundIdentifie r = 160302_R.0582
@RETURN_VALUE = 0
Finished running [dbo].[tbh_GetBoundIde ntifier].
---
The BoundIdentifier is always 13 char long.
How can I do that? I can't find any 'binding' for a label.
I'm new to ASP.NET.
I build a page that has a dropdownlist control bound with data from a
database. When user select an item from the dropdownlist I want a label to
be filled with a result from a stored procedure. The stored procedure takes
an ID of a selected item (@BoundID) from the dropdownlist and gives a result
(@BoundIdentifi er) as follows:
---
Running [dbo].[tbh_GetBoundIde ntifier] ( @BoundID =
cf44452b-8b05-45da-a7c6-14146fba0356, @BoundIdentifie r = <NULL).
No rows affected.
(0 row(s) returned)
@BoundIdentifie r = 160302_R.0582
@RETURN_VALUE = 0
Finished running [dbo].[tbh_GetBoundIde ntifier].
---
The BoundIdentifier is always 13 char long.
How can I do that? I can't find any 'binding' for a label.
I'm new to ASP.NET.
Comment