for mobile browser i used the following code :
Response.Conten tType = "applicatio n/vnd.wap.xhtml+x ml";
Response.Append Header("Content-Disposition","a ttachment; filename=SailBi g.jpg");
Response.Transm itFile( Server.MapPath( "~/images/sailbig.jpg") );
but this code is not able to open "Save as dialog box " on mobile Emulator Browser .Could anyone please tell me How to open "Save as dialog box " in mobile . i am using XHTML ( not WAP ) with ASP.NET & C# .
Response.Conten tType = "applicatio n/vnd.wap.xhtml+x ml";
Response.Append Header("Content-Disposition","a ttachment; filename=SailBi g.jpg");
Response.Transm itFile( Server.MapPath( "~/images/sailbig.jpg") );
but this code is not able to open "Save as dialog box " on mobile Emulator Browser .Could anyone please tell me How to open "Save as dialog box " in mobile . i am using XHTML ( not WAP ) with ASP.NET & C# .
Comment