Disble excel message in asp.net
-
i am working on excel application in which i need to download the data from excel. while opening excel through application it always popup message as "Connecting to the server for information" i want to disabled that meassage. what i need to do.. i tried .DisplayAlerts = false; But its not working
-
i am working on excel application in which i need to download the data from excel. while opening excel through application it always popup message as "Connecting to the server for information" i want to disabled that meassage. what i need to do.. i tried .DisplayAlerts = false; But its not working
Your information is not proper. How you are accessing your excel? Are you using any third party Dlls? Have you debugged to see if there is any popup invoked?
Mugdha_Aditya wrote:
i tried .DisplayAlerts = false; But its not working
Which object is having this property?
Arun Jacob My Technical Blog : Code.NET
-
Your information is not proper. How you are accessing your excel? Are you using any third party Dlls? Have you debugged to see if there is any popup invoked?
Mugdha_Aditya wrote:
i tried .DisplayAlerts = false; But its not working
Which object is having this property?
Arun Jacob My Technical Blog : Code.NET
no i am not using any third party dll m opening my excel like this ApplicationClass xlApp = new ApplicationClass(); //xlApp.ShowStartupDialog = false; //xlApp.DisplayAlerts = false; Workbook xlWBook = xlApp.Workbooks.Open(sFileName, 0, false, 5, "", "", false, Excel.XlPlatform.xlWindows, "", true, false, 0, true, false, false); every thing working correctly but when i debug my code... n start downloading the data it gives popup as conneting to server to get informtaion... popup goes automatically.. but i want to hide tht