‘>
ı need textbox text set DateTime.Now.ToLongDateString() how to make ?
must inline
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Don’t use the
<%#%>syntax (used for binding expressions):But
<%=%>(same asrunat="server"withResponse.Write):Or
<%:%>if in .NET 4.0 (same asrunat="server"withResponse.WriteandHtmlEncode):See this post of the differences between the different
<%%>tags.So, this should work:
Alternatively, in your code behind you can set this directly (in your page load event handler, for example):