473,795 Members | 2,452 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Returning Excel Spreadsheet as web page

Hello

I am trying to return the contents of an Excel file. However, I don't want to just redirect the request to the Excel file since it does not reside in a location where that is appropriate. I am trying to write the contents of the file to the response but am having trouble. My code resides in the handler for a link-button's click event

Response.ClearH eaders()
Response.ClearC ontent()
Response.Conten tType = "applicatio n/vnd.ms-excel"
Response.AddHea der("Content-Disposition", "attachment;fil ename=" + filename + ".XLS")
Response.WriteF ile(path)
Response.Flush( )
Response.End()

This almost works. When I run it, I get two dialog boxes asking if I want to open or save filename.xls. If I click 'Open' on both, Excel opens up (external from the browser) with the file in it. When I take out the "attachment " designation in the header, I only get 1 dialog box but, if I click 'Open', it ends up displaying the login page of my site in Excel within my browser --- I assume that it is failing some kind of security check or it is being interrpreted as an unauthenticated user at that point

What am I doing wrong? I don't like the two dialog boxes I receive with the code above (and I am sure one of them is resulting in the same behavior of returning the start-page which isn't so good). And, I would prefer that Excel open embedded in the browser instead of in stand-alone mode (although, at this point I would take either behvaior to avoid the second dialog box)

Thanks for any assistance!
Nov 18 '05 #1
10 2218

You aren't doing anything wrong; The only work around I know of, is to change your code and not do a Content-Disposition (and rework via a redirect). The sample code below generates the double open. There was a discussion in this group a few weeks ago; I think the last idea was that this is a bug in IE....

Scott

<%@ Page language="c#" AutoEventWireup ="false" %>
<script language="C#" runat="server">
public void Btn1_Click(obje ct sender, System.EventArg s e)
{
string content = "Hello";
Response.Clear( );
Response.ClearH eaders();
Response.Charse t = "";
Response.Conten tType = "applicatio n/csv";
Response.AddHea der("Content-Disposition", "attachment ; filename=HelloW orld.csv");
Response.AddHea der("Content-Length", content.Length. ToString());
Response.Write( content);
Response.Flush( );
Response.End();
}
</script>
<html>
<body>
<form id="Form1" method="post" runat="server">
<asp:Button id="Btn1" runat="server" Text="Button" onclick="Btn1_C lick"></asp:Button>
</form>
</body>
</html>
<Ke*********@ne wsgroups.nospam > wrote in message news:1B******** *************** ***********@mic rosoft.com...
Hello,

I am trying to return the contents of an Excel file. However, I don't want to just redirect the request to the Excel file since it does not reside in a location where that is appropriate. I am trying to write the contents of the file to the response but am having trouble. My code resides in the handler for a link-button's click event:

Response.ClearH eaders();
Response.ClearC ontent();
Response.Conten tType = "applicatio n/vnd.ms-excel";
Response.AddHea der("Content-Disposition", "attachment;fil ename=" + filename + ".XLS");
Response.WriteF ile(path);
Response.Flush( );
Response.End();

This almost works. When I run it, I get two dialog boxes asking if I want to open or save filename.xls. If I click 'Open' on both, Excel opens up (external from the browser) with the file in it. When I take out the "attachment " designation in the header, I only get 1 dialog box but, if I click 'Open', it ends up displaying the login page of my site in Excel within my browser --- I assume that it is failing some kind of security check or it is being interrpreted as an unauthenticated user at that point.

What am I doing wrong? I don't like the two dialog boxes I receive with the code above (and I am sure one of them is resulting in the same behavior of returning the start-page which isn't so good). And, I would prefer that Excel open embedded in the browser instead of in stand-alone mode (although, at this point I would take either behvaior to avoid the second dialog box).

Thanks for any assistance!
Nov 18 '05 #2
Hi Keith,

From your description, you encountered some problems when trying to display
a excel file to the reponse of a certain asp.net web page to client, yes?

1. As for the first problem, this seems a known behavior I've also met
before. When we put the code in a button's post back event handler, then
when the page return back, the file download dialog will popup twice. If I
put the the code in page_load instead, if will work ok without the popup
twice problem. You may have a try to confirm this, also I think this maybe
a potential workaround. How do you think ?

2. As for the problems that display "login page" rather than excel, I'd
like to confirm some further things:
1) Are you using FormsAuthentica tion in your asp.net web application. It
seems that you're redirect to the login page when accessing the excel file.

2). If 1) is right, then have you set authorize protection on the certain
excel files, if so ,I think you can try write a certain excel file which is
not protected (can be accessecd by unauthenticated user who hasn't login
yet). Then run the code a gain to see whether the problem is due to the
form authentication.

Please have a try and wish you good luck! Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #3
Hi Keith,

Have you had a chance to check out the suggestions in my last reply or have
you got any further ideas on this issue? If you have anything unclear or if
there're anything else we can help, please feel free to post here. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #4
Thanks for your feedback, but, I haven't got this settled quite yet. If I can get your first suggestion to work, I think it would be a fine resolution, but, I am not sure how. I write the Excel file into the response in the handler for the link-button because there are multiple buttons which could be pressed which will result in different behavior. Is there a way, in the page-load event, to determine which submit button was clicked to post the form? I took a look but didn't see anything obvious. If there is a way of, basically, handling the click during page-load, I think I can go with your workaround

For your second question, you assumed correctly that I am using forms authentication. I did try changing the permissions on the file and received the same results. I don't see how this approach could work, though. Does this statement "Response.Write File(path);" require the file to be accessible by the unauthenticated user? I would have assumed that as long as the ASPNET user which is executing the code can open the file and put the contents into the response, the security of the user would not enter the picture. Let me know if I am missing something on this

Thanks for you help --- let me know if you have any other ideas. For the time being, I am probably going to accept that there are 2 dialog boxes.
Nov 18 '05 #5
You could grab the control (button) id and check the postback data; however, the 1st suggestion (sending the file back in the Page_Load) doesn't solve the problem -- I can post a sample that sends a file in Page_Load and IE still does the two dialog thing.

Scott
<Ke*********@ne wsgroups.nospam > wrote in message news:7B******** *************** ***********@mic rosoft.com...
Thanks for your feedback, but, I haven't got this settled quite yet. If I can get your first suggestion to work, I think it would be a fine resolution, but, I am not sure how. I write the Excel file into the response in the handler for the link-button because there are multiple buttons which could be pressed which will result in different behavior. Is there a way, in the page-load event, to determine which submit button was clicked to post the form? I took a look but didn't see anything obvious. If there is a way of, basically, handling the click during page-load, I think I can go with your workaround.

For your second question, you assumed correctly that I am using forms authentication. I did try changing the permissions on the file and received the same results. I don't see how this approach could work, though. Does this statement "Response.Write File(path);" require the file to be accessible by the unauthenticated user? I would have assumed that as long as the ASPNET user which is executing the code can open the file and put the contents into the response, the security of the user would not enter the picture. Let me know if I am missing something on this.

Thanks for you help --- let me know if you have any other ideas. For the time being, I am probably going to accept that there are 2 dialog boxes.
Nov 18 '05 #6
If you have one button you want to cause the Excel output, make the button's event set a boolean member variable to true. Then override the Render method, and if the variable is true, send the Excel output from there, otherwise, render like normal.

-Brian Orrell
MethodExperts, LLC
br**********@NO SPAMHEREmethode xperts.com

"Scott G." <no*****@this-is-extra-hotmail.com> wrote in message news:Ow******** ******@TK2MSFTN GP10.phx.gbl...
You could grab the control (button) id and check the postback data; however, the 1st suggestion (sending the file back in the Page_Load) doesn't solve the problem -- I can post a sample that sends a file in Page_Load and IE still does the two dialog thing.

Scott
<Ke*********@ne wsgroups.nospam > wrote in message news:7B******** *************** ***********@mic rosoft.com...
Thanks for your feedback, but, I haven't got this settled quite yet. If I can get your first suggestion to work, I think it would be a fine resolution, but, I am not sure how. I write the Excel file into the response in the handler for the link-button because there are multiple buttons which could be pressed which will result in different behavior. Is there a way, in the page-load event, to determine which submit button was clicked to post the form? I took a look but didn't see anything obvious. If there is a way of, basically, handling the click during page-load, I think I can go with your workaround.

For your second question, you assumed correctly that I am using forms authentication. I did try changing the permissions on the file and received the same results. I don't see how this approach could work, though. Does this statement "Response.Write File(path);" require the file to be accessible by the unauthenticated user? I would have assumed that as long as the ASPNET user which is executing the code can open the file and put the contents into the response, the security of the user would not enter the picture. Let me know if I am missing something on this.

Thanks for you help --- let me know if you have any other ideas. For the time being, I am probably going to accept that there are 2 dialog boxes.
Nov 18 '05 #7

Interesting idea; but this has the same problem as all of the rest of the solutions. Here's a sample that has your idea and generates two open dialog boxes on my machine.

Scott

<%@ Page language="c#" AutoEventWireup ="false" trace="true" %>
<script language="C#" runat="server">
bool m_sendCSV = false;
public void Btn1_Click(obje ct sender, System.EventArg s e)
{
m_sendCSV = true;
}

private void SendCSV()
{
string content = "Hello";
Response.Clear( );
Response.ClearH eaders();
Response.Charse t = "";
Response.Conten tType = "applicatio n/csv";
Response.AddHea der("Content-Disposition", "attachment ; filename=HelloW orld.csv");
Response.AddHea der("Content-Length", content.Length. ToString());
Response.Write( content);
Response.Flush( );
Response.End();
}

protected override void Render(HtmlText Writer w)
{
if (m_sendCSV)
{
SendCSV();
}
else
{
base.Render(w);
}
}
</script>
<html>
<body>
<form id="Form1" method="post" runat="server">
<asp:Button id="Btn1" runat="server" Text="Button" onclick="Btn1_C lick"></asp:Button>
</form>
</body>
</html>
"Brian Orrell" <br**********@R EMOVETHISTEXTme thodexperts.com > wrote in message news:eT******** ******@TK2MSFTN GP09.phx.gbl...
If you have one button you want to cause the Excel output, make the button's event set a boolean member variable to true. Then override the Render method, and if the variable is true, send the Excel output from there, otherwise, render like normal.

-Brian Orrell
MethodExperts, LLC
br**********@NO SPAMHEREmethode xperts.com

"Scott G." <no*****@this-is-extra-hotmail.com> wrote in message news:Ow******** ******@TK2MSFTN GP10.phx.gbl...
You could grab the control (button) id and check the postback data; however, the 1st suggestion (sending the file back in the Page_Load) doesn't solve the problem -- I can post a sample that sends a file in Page_Load and IE still does the two dialog thing.

Scott
<Ke*********@ne wsgroups.nospam > wrote in message news:7B******** *************** ***********@mic rosoft.com...
Thanks for your feedback, but, I haven't got this settled quite yet. If I can get your first suggestion to work, I think it would be a fine resolution, but, I am not sure how. I write the Excel file into the response in the handler for the link-button because there are multiple buttons which could be pressed which will result in different behavior. Is there a way, in the page-load event, to determine which submit button was clicked to post the form? I took a look but didn't see anything obvious. If there is a way of, basically, handling the click during page-load, I think I can go with your workaround.

For your second question, you assumed correctly that I am using forms authentication. I did try changing the permissions on the file and received the same results. I don't see how this approach could work, though. Does this statement "Response.Write File(path);" require the file to be accessible by the unauthenticated user? I would have assumed that as long as the ASPNET user which is executing the code can open the file and put the contents into the response, the security of the user would not enter the picture. Let me know if I am missing something on this.

Thanks for you help --- let me know if you have any other ideas. For the time being, I am probably going to accept that there are 2 dialog boxes.
Nov 18 '05 #8
I ran your example and it worked just fine.

I put three buttons on the page. With only one causing an Excel sheet to open, the other two just caused changes to the screen. Worked great. What do you mean by two dialog boxes?

"Scott G." <no*****@this-is-extra-hotmail.com> wrote in message news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .

Interesting idea; but this has the same problem as all of the rest of the solutions. Here's a sample that has your idea and generates two open dialog boxes on my machine.

Scott

<%@ Page language="c#" AutoEventWireup ="false" trace="true" %>
<script language="C#" runat="server">
bool m_sendCSV = false;
public void Btn1_Click(obje ct sender, System.EventArg s e)
{
m_sendCSV = true;
}

private void SendCSV()
{
string content = "Hello";
Response.Clear( );
Response.ClearH eaders();
Response.Charse t = "";
Response.Conten tType = "applicatio n/csv";
Response.AddHea der("Content-Disposition", "attachment ; filename=HelloW orld.csv");
Response.AddHea der("Content-Length", content.Length. ToString());
Response.Write( content);
Response.Flush( );
Response.End();
}

protected override void Render(HtmlText Writer w)
{
if (m_sendCSV)
{
SendCSV();
}
else
{
base.Render(w);
}
}
</script>
<html>
<body>
<form id="Form1" method="post" runat="server">
<asp:Button id="Btn1" runat="server" Text="Button" onclick="Btn1_C lick"></asp:Button>
</form>
</body>
</html>
"Brian Orrell" <br**********@R EMOVETHISTEXTme thodexperts.com > wrote in message news:eT******** ******@TK2MSFTN GP09.phx.gbl...
If you have one button you want to cause the Excel output, make the button's event set a boolean member variable to true. Then override the Render method, and if the variable is true, send the Excel output from there, otherwise, render like normal.

-Brian Orrell
MethodExperts, LLC
br**********@NO SPAMHEREmethode xperts.com

"Scott G." <no*****@this-is-extra-hotmail.com> wrote in message news:Ow******** ******@TK2MSFTN GP10.phx.gbl...
You could grab the control (button) id and check the postback data; however, the 1st suggestion (sending the file back in the Page_Load) doesn't solve the problem -- I can post a sample that sends a file in Page_Load and IE still does the two dialog thing.

Scott
<Ke*********@ne wsgroups.nospam > wrote in message news:7B******** *************** ***********@mic rosoft.com...
Thanks for your feedback, but, I haven't got this settled quite yet. If I can get your first suggestion to work, I think it would be a fine resolution, but, I am not sure how. I write the Excel file into the response in the handler for the link-button because there are multiple buttons which could be pressed which will result in different behavior. Is there a way, in the page-load event, to determine which submit button was clicked to post the form? I took a look but didn't see anything obvious. If there is a way of, basically, handling the click during page-load, I think I can go with your workaround.

For your second question, you assumed correctly that I am using forms authentication. I did try changing the permissions on the file and received the same results. I don't see how this approach could work, though. Does this statement "Response.Write File(path);" require the file to be accessible by the unauthenticated user? I would have assumed that as long as the ASPNET user which is executing the code can open the file and put the contents into the response, the security of the user would not enter the picture. Let me know if I am missing something on this.

Thanks for you help --- let me know if you have any other ideas. For the time being, I am probably going to accept that there are 2 dialog boxes.
Nov 18 '05 #9

Read the first message in the thread; there have been a couple of threads on this in the last month. In IE, when one uses the Content-Disposition attachment you'll get two Open dialog boxes before Excel opens. This doesn't happen everywhere, but it definately happens for about 40% of our customers....

The last I worked on this I was convinced it is a bug in IE; but I'm still open to ideas.

Scott
"Brian Orrell" <br**********@R EMOVETHISTEXTme thodexperts.com > wrote in message news:Og******** *****@TK2MSFTNG P10.phx.gbl...
I ran your example and it worked just fine.

I put three buttons on the page. With only one causing an Excel sheet to open, the other two just caused changes to the screen. Worked great. What do you mean by two dialog boxes?

"Scott G." <no*****@this-is-extra-hotmail.com> wrote in message news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .

Interesting idea; but this has the same problem as all of the rest of the solutions. Here's a sample that has your idea and generates two open dialog boxes on my machine.

Scott

<%@ Page language="c#" AutoEventWireup ="false" trace="true" %>
<script language="C#" runat="server">
bool m_sendCSV = false;
public void Btn1_Click(obje ct sender, System.EventArg s e)
{
m_sendCSV = true;
}

private void SendCSV()
{
string content = "Hello";
Response.Clear( );
Response.ClearH eaders();
Response.Charse t = "";
Response.Conten tType = "applicatio n/csv";
Response.AddHea der("Content-Disposition", "attachment ; filename=HelloW orld.csv");
Response.AddHea der("Content-Length", content.Length. ToString());
Response.Write( content);
Response.Flush( );
Response.End();
}

protected override void Render(HtmlText Writer w)
{
if (m_sendCSV)
{
SendCSV();
}
else
{
base.Render(w);
}
}
</script>
<html>
<body>
<form id="Form1" method="post" runat="server">
<asp:Button id="Btn1" runat="server" Text="Button" onclick="Btn1_C lick"></asp:Button>
</form>
</body>
</html>
"Brian Orrell" <br**********@R EMOVETHISTEXTme thodexperts.com > wrote in message news:eT******** ******@TK2MSFTN GP09.phx.gbl...
If you have one button you want to cause the Excel output, make the button's event set a boolean member variable to true. Then override the Render method, and if the variable is true, send the Excel output from there, otherwise, render like normal.

-Brian Orrell
MethodExperts, LLC
br**********@NO SPAMHEREmethode xperts.com

"Scott G." <no*****@this-is-extra-hotmail.com> wrote in message news:Ow******** ******@TK2MSFTN GP10.phx.gbl...
You could grab the control (button) id and check the postback data; however, the 1st suggestion (sending the file back in the Page_Load) doesn't solve the problem -- I can post a sample that sends a file in Page_Load and IE still does the two dialog thing.

Scott
<Ke*********@ne wsgroups.nospam > wrote in message news:7B******** *************** ***********@mic rosoft.com...
Thanks for your feedback, but, I haven't got this settled quite yet. If I can get your first suggestion to work, I think it would be a fine resolution, but, I am not sure how. I write the Excel file into the response in the handler for the link-button because there are multiple buttons which could be pressed which will result in different behavior. Is there a way, in the page-load event, to determine which submit button was clicked to post the form? I took a look but didn't see anything obvious. If there is a way of, basically, handling the click during page-load, I think I can go with your workaround.

For your second question, you assumed correctly that I am using forms authentication. I did try changing the permissions on the file and received the same results. I don't see how this approach could work, though. Does this statement "Response.Write File(path);" require the file to be accessible by the unauthenticated user? I would have assumed that as long as the ASPNET user which is executing the code can open the file and put the contents into the response, the security of the user would not enter the picture. Let me know if I am missing something on this.

Thanks for you help --- let me know if you have any other ideas. For the time being, I am probably going to accept that there are 2 dialog boxes.
Nov 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
47750
by: Jim, N2VX | last post by:
I'd like to create/display an Excel spreadsheet from javascript. We have an HTML page with results of a search and it can be reasonably large. The first attempt was to format the data into an HTML table and send it to an ASP page. The ASP page has: Response.AddHeader ("Content-Disposition", "inline"); Response.ContentType = "application/vnd.ms-excel"); Response.Write(formatted_html_data);
1
1565
by: JV | last post by:
Hi, I'm researching how I can : 1- dynamically generate an Excel spreadsheet by querying a database on an ASP page * I understand how to do this 2- open this spreadsheet by a user (client side) * I understand how to do this
13
1813
by: middletree | last post by:
Curt and McKirahan have been very helpful the past week as I have been introduced to something new to me: generating a spreadsheet from ASP. Now that I have the spreadsheet, I am in need of knowledge about how to control the properties. By properties, I mean font, hyperlink, and color information. I'd like the spreadsheet to have the same data as the HTML page it's getting the data from, but in a different format. I have been searching...
6
6769
by: Daniel | last post by:
Hi all, Can i open and edit the excel sheet on web page after downloading? After editing, i close the web page and the excel file auto upload to the server. Is it possible? I really struggling about the ability. If not, what advice can u provide? thank you in advance. ur help will be appreaciated.
1
2743
by: desi.american | last post by:
I have a dynamically generates ASPX page with tables and data. Depending on user selection, the same page can be viewed as a simple web page (rendered in HTML) or as an excel spreadsheet. If the user chooses to view the page as an excel sheet, I attach the following line of code in C# in the Page_Load method. Response.ContentType = "application/vnd.ms-excel"; All this works fine. But some of cells read nvarchar fields from a database...
0
1061
by: Leonard | last post by:
I am trying to open an excel spreadsheet that is loaded from a datagrid. I have managed to do this. But, my original .aspx page no longer works. I will try to explain. I have an .aspx page - Default.aspx, that gets loaded with an .ascx, depending on the menu item. One of the ascx controls contains a button to load my datagrid and pass it to excel. Excel opens and the spreadsheet is loaded, and that all looks ok, but, the original ascx...
8
9722
by: Mel | last post by:
Can anyone tell me why I am getting this error? It bombs on this line of my VB code: Public appExcel As New Excel.Application It works when I test it on my machine but once I release the page to the web server I get the error when I click on a hyperlink that loads the page. I have the Interop.Excel and Interop.Microsoft.Office.Core references added to my project but I still get this error. What am I missing?
7
28905
Merlin1857
by: Merlin1857 | last post by:
Its great producing data for users to look at in your web pages and generally that is sufficient for their needs but sometimes you may want to supply your user with the data in a form they can actually do something more with. This code shows you how to display data from your database and then how to give that data to the user in the form of a useable Excel spreadsheet which they can then take away and play with themselves. The way I have shown...
3
4470
by: S_K | last post by:
Hi, I have a problem when I try to save a .CSV file from an ASP.NET web page and the client has Excel open already. The symptoms are: 1) The web page is currently displaying the Excel spreadsheet with the accurate data. 2) The .CSV file is saved from the server to the local hard drive of the client. 3) An Excel spreadsheet is already running on the client (version 2002
0
9672
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9519
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10214
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10164
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10001
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5437
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2920
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.