DataBinding Static Methods!

  • Thread starter Thread starter Adam J Knight
  • Start date Start date
A

Adam J Knight

Hi all,

I have created a class that contains static method; these method return db
data.

If i use the following code in my code behind all works fine:
ddlMyDropDownList.DataSource = myClass.GetData()

If i code it into my page like so:
<asp:DropDownList ID="test" DataSource="<%# myClass.GetData()%>"
Runat="server"/>

I get an error saying myClass is not availble in this context ect..

Any thoughts..???

Cheers,
Adam
 
Hi Adam,

Have you imported myClass namespace in .aspx page. If not import the
namespace in you .aspx page.

<%@ Import NameSpace = "namespace"%>

Cheers,
Kris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top