Web Forms :: How To Avoid Save As Dialogue Box In Mac
Oct 20, 2010
I am showing pdf documents in my application using a menu, what i am doing is whenever a menu option is clicked for pdf file to view it calls a user control and in that user control i have made an iframe and that iframe calls a page called reference.aspx that calls the following code to show pdf file in that iframe.
MemoryStream Memory = new MemoryStream();
FileStream file = null;
Byte[] buffer = new Byte[10];
buffer = new Byte[file.Length];
file.Read(buffer, 0, (int)file.Length);
Memory.Write(buffer, 0, (int)file.Length);
file.Close();
HttpContext.Current.Response.ContentType = "application/pdf";
HttpContext.Current.Response.AddHeader("content-disposition", "inline; filename=" + selectedReport);
HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
HttpContext.Current.Response.BinaryWrite(Memory.ToArray());
HttpContext.Current.Response.Flush();
Memory.Dispose();
It works great in windows environment, in IE and firefox etc but when it is run in MAC it does not open file in browser rather it opens a save as dialogue box that i don't want, i want to show is that file.
View 1 Replies
Similar Messages:
Oct 18, 2010
we wrote CMS apps with asp.net. the user can attach file documents, pdfs to their forms and send to each other. the user can easily download the pdf and other documents but when they want to download jpg file their IE render the jpg file as a binary and show the binaries of jpg file? the IE didn't show the save as dialogue such as other files!
where is problem? and how can I handle this in asp.net? Is it relate to HTTPS? because the user used the https to connect to this cms.
View 1 Replies
Aug 28, 2010
In my application users upload their word document and user has been given an option to preivew the uploaded document. Inorder to preview the document i put the following code in my page_load event
div1.InnerHtml = "<iframe name='iframe4' src='DocumentUuploaded/report.doc ' target='iframe4' frameborder='no' height='500' scrolling='no' width='800'></iframe>";
The problem is it is asking Do you want to open or save this file. How can i get rid of this dialouge box
View 3 Replies
Feb 24, 2011
I upload the file with fileupload control in the attachment folder. How can i open these file or to open the save/open dialogue box. tese fike are of different extension.
View 12 Replies
Oct 14, 2010
I am hoping to get some suggestions on the best route to go to implement a Modal dialogue box.
My requirements are:
1) Be modal
2) Be reusuable -- I thought about creating it as a Usercontrol and pass in whatever string to display
3) Have the option to include buttons. Such as Ok, Delete, etc.
4) Not be a true popup and hence be blocked by popup blockers.
I have looked into Ajax's AlwaysVisibleControl or Modal Pop-up..
But would like to get input on the best approach.
View 4 Replies
Sep 15, 2010
I am generating a Pdf file from a webservice to local machine. Once the pdf file is saved to local machine, i would like to print this file automatically without Popping up the Print Dialogue.
I mean without any user interaction that pdf file should be printed.
View 1 Replies
Mar 14, 2010
I have a dropdown list, and can select names to delete from db table user.
Just want to add a confirmation dialogue window before deleting the record.
I am using a simple function at js to confirm. Isn't that enough to go to btnDelete_click() if true? I am using LINQ to SQL.
I tried:
(code behind)
protected void Page_Load (object
sender, EventArgs e)
{
if(!IsPostBack)
btnDelete.Attributes.Add("onclick","return check();");
}......
View 6 Replies
Feb 9, 2011
Is there any way to change the content of a Windows Integrated authentication dialogue box?
View 1 Replies
Jul 26, 2010
I have an intranet set up with IIS and it is working fine with windows integrated autehntication. However I have some permissions set and when certain users do not have access they get prompted for their login and I don't want this. I want it to go straight to the access denied page.
I read that "In integrated Windows authentication, the browser tries to use the current user's credentials from a domain logon, and if this attempt is unsuccessful, the user is prompted to enter a user name and password. "
So I understand this is supposed to happen but I was wondering if there was anyway to not have it prompt for a username and password if the first attemp is unsuccessful.
View 2 Replies
Mar 25, 2010
how we can access the Remove button event of the Collection Editor dialogue box?
View 3 Replies
Jan 3, 2011
In an ASP.NET page I have added two user control with a dropdownlist each one. The selection of a dropdownlist should be changed the query to the second user control.What is the most efficient way to pass the selected value of dropdownlist to the second?I initially thought of creating a public event (public string OnClientSelectedIndexChanged) while the first user control and outsource through a public string SelectedValue the selected value of the second user control:
public string SelectedValue
{
get
{
[code]...
View 2 Replies
Feb 4, 2011
My page (which basically contains a pair of Repeaters) renders and is displayed to the user.I'd like to have a "Download" button on the page which, when clicked, will propmt the user to save the page locally as an html file without losing any of the CSS formatting.
My CSS files are linked to via a Master Page.Currently, I have the button linked to some javascript that open will the Save As dialog, but all of the CSS formatting is lost, and it saves the page .I'm assuming that the button will need to open a new page which will re-create the data for the Repeaters and then save using StreamWriter, but I'm not exactly sure if that's right or how best to do it.
View 1 Replies
Feb 16, 2013
can we save pdf document without save,view,cancel dialogue box in asp.net..
View 1 Replies
Feb 3, 2011
i have place some .txt files in my web application root directory. now i want to open a popup on button click with save button so that client can save this file on his/her PC. also can we auto set the path??? mean client jst press save button and file automatically stored his "D:\Foldersample.txt".
View 1 Replies
Feb 10, 2011
can we save or update record in the table from the same page ?
View 2 Replies
Aug 3, 2010
I have 5 dropdpwnlist in asp.net page.. the 5th dropdwpnlist will show data based on 4th dropdownlist. and 4th dropdwpnlist will show data based on 3rd dropdownlist. and 3rd dropdwpnlist will show data based on 2nd dropdownlist. and 2th dropdwpnlist will show data based on 1st dropdownlist... All dropdownlist has auto postback=true.. so it cause postaback each time.. i want to avoid postback coz it refresh all page again and again and shows data.. coz my aplication is in hosting server..
View 5 Replies
Dec 18, 2010
I would like to know if it's possible not to use ASPNETDB.MDF file for the web parts.I don't want to store any data in ASPNETDB.MDF, I would like to remove that file, I tried delete it, but every time I compile my project, ASPNETDB.MDF creates it self automatically.
View 2 Replies
Jun 18, 2010
I am using Iframe control in html in that i am refreshing a page for every 30sec. The page also refreshing while refreshing iframe window is blinking. I want to refresh a page every 30 sec without any blinking by using iframe
View 2 Replies
Dec 21, 2010
I have a button on my web page and i would like to know if its possible to aviod consecutive clicks. Lets say i have a submit button or another button which inserts into db. And i figured out that there are two records in the db. So i would like to avoid consecutive button clicks.
View 3 Replies
Apr 15, 2010
I have issue with special characters. I would like to know how to write condition to avoid this xml break due to special characters. I need to set condition to accept only 256 ascii characters in textbox and all other should be replace with "#".
View 3 Replies
Oct 21, 2010
i need a code to Avoid multiple form submissions in a page..
View 6 Replies
Apr 30, 2010
I have three dropdowns, the second one is visible only if first dropdown selection is "Sunshine"
I have a blank space between when the second dropdown visible = false
it is possible to avoid this blank space, between the dropdowns.
I have a sample app below
[Code]....
View 5 Replies
Jan 7, 2010
I have several LINQ-auto-created data classes which are created using dragging and dropping database tables into the Visual Studio LINQ design pane. Also, in my project I have to manually create WCF data-contract classes. Each WCF contract class is for one LINQ-auto-created data classes; one to one. Is there some better way to reduce the efforts to this problem? e.g. inheritance or something else to create WCF datacontract class from existing LINQ-data class.
Example:
[code].....
View 3 Replies
Feb 13, 2010
I have a masterpage with a timer that shows server time and refreshes every second, on the content page I have a chat program with ajax, refreshes every to second to get the last messages entered.
I have a Html TextBox and a hidden Submit Button, when user write a text, and hit the enter, I check to see if this is the enter key and then submit the message,it is working perfectly in IE, but in FireFox and Opera it show the same message twice. I think the problem is the Timer, is there any way to avoid the MasterPage timer in this particular content page?
View 1 Replies
Jul 3, 2012
How to avoid concurrent login for same user?
View 1 Replies