PDA

View Full Version : منوی File Download



tinashamshastam
دوشنبه 04 تیر 1386, 08:40 صبح
سلام این کدها که مربوط به دانلود یک فایل است را چگونه تغییر دهم که وقتی منوی File Download باز میشه تنها دو گزینه save و cancel را نشون بده و گزینه open را یا اصلا نداشته باشه یا این گزینه غیر فعال باشه؟






Response.ClearContent();
Response.ContentType = "text/plain";
Response.AddHeader("content-disposition", "attachment;filename=" + frmE.Doc.Code + ".xml");
Response.WriteFile(Path);
Response.End();