doubt
actually i want to give title tage name based on the product selection in datalist box in asp.net,how to give title name dynamically
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bharathi RajaPosted Feb 1, 2018, 4:49 AM
Manoj BhoirPosted Jul 9, 2015, 8:47 AM
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MyApplication
{
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.Title = "Title of my page";
}
}
}
Vignesh ManiPosted Jul 9, 2015, 8:32 AM