Hiii
i am working on e-commorce website. i wan't to change page title dynamically with the help of data base according to the product in asp.net. please give me some answer
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.
Aditya MishraPosted Jun 1, 2015, 7:15 AM
Pankaj Kumar ChoudharyPosted Jun 1, 2015, 6:26 AM
{
string str;
str = "Put Your Query";
SqlCommand com = new SqlCommand(str, Con_Name);
object obj = com.ExecuteScalar();
Page.Title = obj.ToString();
}
Upendra Pratap ShahiPosted Jun 1, 2015, 5:58 AM
Manoj BhoirPosted Jun 1, 2015, 5:51 AM