Ctype Namespace

  • Thread starter Thread starter Vinod Jajoo
  • Start date Start date
V

Vinod Jajoo

When using
CType(e.Item.FindControl("imgProduct"),
System.Web.UI.WebControls.Image).ImageUrl



I am getting following error :

c:\inetpub\wwwroot\BoTree\products.aspx.cs(132): The name 'CType' does not
exist in the class or namespace 'BoTree.products'

Thanks



Vinod Jajoo
 
Vinod Jajoo said:
When using
CType(e.Item.FindControl("imgProduct"),
System.Web.UI.WebControls.Image).ImageUrl

I am getting following error :

c:\inetpub\wwwroot\BoTree\products.aspx.cs(132): The name 'CType' does not
exist in the class or namespace 'BoTree.products'

The ".cs" suggests that this is meant to be C# - CType is a VB.NET-ism.
 
for c# use...

((System.Web.UI.WebControls.Image)e.Item.FindControl("imgProduct")).ImageUrl
 

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