J
JohnZing
I'm usinf asp 2.0 and visual studio 2005
In html
<img id="selcolorimg" runat="server" name="selcolorimg"
src="image4.jpg">
I want to use selcolorimg in code behind, but vs2005 throws an error
"selcolorimg is not declared"
Ok, i tried to insert
Protected selcolorimg As HtmlImage
BUT, NOW i get a new error
'selcolorimg' is already declared as 'Protected Dim WithEvents
selcolorimg As System.Web.UI.HtmlControls.HtmlImage' in this class.
Declared where?? So, why vs2005 says is not declared??
In html
<img id="selcolorimg" runat="server" name="selcolorimg"
src="image4.jpg">
I want to use selcolorimg in code behind, but vs2005 throws an error
"selcolorimg is not declared"
Ok, i tried to insert
Protected selcolorimg As HtmlImage
BUT, NOW i get a new error
'selcolorimg' is already declared as 'Protected Dim WithEvents
selcolorimg As System.Web.UI.HtmlControls.HtmlImage' in this class.
Declared where?? So, why vs2005 says is not declared??