在Visual Studio中为文本框编写ASP代码的位置?

时间:2013-10-18 15:26:19

标签: c# asp.net visual-studio-2010 visual-studio

我是C#的新手,我搜索了如何获得textBox的透明背景,我找到了这段代码:

<asp:textbox runat="server" id="textTest" style="background-color: transparent;"></asp:textbox>

我需要它用于Form4中的textBox1

2 个答案:

答案 0 :(得分:0)

只要您在textBox1中拥有Form4的代码,例如

<asp:textbox runat="server"  id="textBox1">

如果找不到此匹配Ctrl + F,请将Look in:更改为当前项目,然后搜索textBox1。

将其更改为:

<asp:textbox runat="server" id="textBox1" style="background-color: transparent;">

或者在CSS文件中添加:

#textBox1
{
    background-color:transparent;
}

答案 1 :(得分:0)

转到表单的代码视图,并将找到的代码中的style属性添加到textbox1中,如图所示。

    <asp:textbox runat="server" id= "textbox1" style="background-color: transparent;"><asp:textbox>