Hi,mahdi
You could try the following.
protected string InputValue { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.InputValue = "something";
}
}
<input type="text" value="<%= this.InputValue %>" />
Best regards,
Chris Zhao