[RESOLVED] mobile textbox color problems
Hi there
I have a web form that displays records from an sql database
When a record is then selected a new form loads displaying the information in textboxs.
I want the last text box to have a coloured background, but i could not get this to work in my vb code. I was using
Textbox1.BackColor = Color.Aqua
This does not do anything, I have been told that for some reason that the color option for mobile controls is ignored when rendering adapter sets but I have nbo idea what this means, does anyone know of a way roand this i realy need to change the color of my mobile textbox
hope somone can help
the language is asp.net using vb
lee
Re: mobile textbox color problems
Try
TextBox1.Attributes.Add("style","background:black;")
Re: mobile textbox color problems
Hi there no that dosent work says cannot set attributes on a mobile control
Re: [RESOLVED] mobile textbox color problems
Why is this [Resolved]? What was the answer?