I get a few underline from this code: Value of type string cannot be converted to 'System.Web.UI.WebControls.Label'

Why is it?

KodeBarang = CType(Repeater1.Items(e.Item.ItemIndex).FindControl("KodeBarang"), Label).Text
NamaBarang = CType(Repeater1.Items(e.Item.ItemIndex).FindControl("NamaBarang"), Label).Text

KodeBarang is a label so you'll need to make an instance of it first by locating it in the reapeater. Are you trying to find its value?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.