Hi Grey,
HMTL or HTML ?
to assign the value to the HTML textbox you need to the add the runat="server" attribute for the html textbox
once you have that you can access that html textox control with its id and assign the value
myHTMLTextBox.Value = "Hello";
HTH
Regards
Ashish M Bhonkiya
I want to assign a value to HMTL textbox with id "txtABC" in ASP.NET with C#