Use Response object inside asp:textbox tag
I want to have a textbox filled with text using Response.Write. Can anyone tell me why this doesn't work, and what I can do to make it work?
<asp:TextBox ID="txt1" runat="server" ><% Response.Write("asdf") %></asp:TextBox>
I did this as a test and it doesn't work. I'd really like the day of the week put into the textbox using the Weekday function.
Thanks.
|