On 8/27/2011 2:19 PM, Tony Johansson wrote:
> When this text box web control
> <asp:TextBox ID="txt" runat="server" />
> is sent to the browser a name attribute is added. As you can see the ID
> attribute has the same value as the name attribute.
> So my question is what is the point in that having two attribute with the
> same value ?
> <input type="text" ID="txt" name="txt" />
As I read the docs, then name is not an ASP.NET control
attribute but an HTML INPUT attribute that ASP.NET just
passes on.
So I think you should only use id and let ASP.NET generate
name based on that.
Arne
PS: Why not cross post instead of multi post?
|