I am doing an ASP.NET Framework MVC project and I have a title tag in my "layout.cshtml" like below :
<title>ViewBag.Title</title>
this "layout.cshtml" is the layout page of my "index.cshtml" and this "ViewBag" gets data from the "index.cshtml" like below :
ViewBag.Title = "Transaction های" + " روزانه";
My problem is that it will be shown like below text in tab of the browser :
Transaction های روزانه
But I need it to be shown like below text in browser tab :
های روزانه Transaction
How can I do this? Any help will be appriciated!
