I want to input Unicode string in String.Format() method.
This is my code:
string filename = String.Format("Това трябва да е уникод {0}_{1}.doc", wayBillNum, DateTime.Now.ToShortDateString());
//File name for the exported word document
HttpContext.Current.Response.AddHeader("Content-Disposition", "inline;filename=" + filename);
How to do this?