473,757 Members | 9,145 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

asp:Wizard inside of a asp:FormView breaks two-way databinding

I posted this yesterday with a different email address. I am reposting with
my fake-address as given to me by Microsoft so that I can be guraranteed a
response from a support representative. Sorry for the repost.

I'd like to make use of the asp:Wizard control to present a step-by-step
guided experience for my user to fill out a complicated data-entry form.

I'd like to make use of two-way databinding provided by the asp:FormView
control to drasticly reduce the number of lines of code I need to write.

But when I combine those two controls, databinding breaks. Please see the
example below. The database in this example is a simple access database with
a single table My real life example is way to complicated to describe here,
but this simple case reproduces the problem.

If you run through the wizard, clicking Finish causes a record to be
inserted with null values in all the fields. What I don't show here, is if
you strip out the wizard control, everything works fine.

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">

<script runat="server">

protected void Wizard1_FinishB uttonClick(obje ct sender,
WizardNavigatio nEventArgs e)

{

FormView1.Inser tItem(true);

}

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Untitl ed Page</title>

</head>

<body>

<form id="form1" runat="server">

<div>

<asp:AccessData Source ID="AccessDataS ource1" runat="server"
DataFile="~/App_Data/db1.mdb"

InsertCommand=" INSERT INTO [Thing] ([Step1Data], [Step2Data], [Step3Data],
[Step4Data]) VALUES (?, ?, ?, ?)"

SelectCommand=" SELECT * FROM [Thing]">

<InsertParamete rs>

<asp:Paramete r Name="Step1Data " Type="String" />

<asp:Paramete r Name="Step2Data " Type="String" />

<asp:Paramete r Name="Step3Data " Type="String" />

<asp:Paramete r Name="Step4Data " Type="String" />

</InsertParameter s>

</asp:AccessDataS ource>

<asp:GridView ID="GridView1" runat="server" AutoGenerateCol umns="False"
DataKeyNames="T hingID"

DataSourceID="A ccessDataSource 1">

<Columns>

<asp:BoundFie ld DataField="Thin gID" HeaderText="Thi ngID"
InsertVisible=" False" ReadOnly="True"

SortExpression= "ThingID" />

<asp:BoundFie ld DataField="Step 1Data" HeaderText="Ste p1Data"
SortExpression= "Step1Data" />

<asp:BoundFie ld DataField="Step 2Data" HeaderText="Ste p2Data"
SortExpression= "Step2Data" />

<asp:BoundFie ld DataField="Step 3Data" HeaderText="Ste p3Data"
SortExpression= "Step3Data" />

<asp:BoundFie ld DataField="Step 4Data" HeaderText="Ste p4Data"
SortExpression= "Step4Data" />

</Columns>

</asp:GridView>

<asp:FormView ID="FormView1" runat="server" DataSourceID="A ccessDataSource 1"
DataKeyNames="T hingID" DefaultMode="In sert">

<InsertItemTemp late>

<asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex ="0"
OnFinishButtonC lick="Wizard1_F inishButtonClic k">

<WizardSteps>

<asp:WizardSt ep ID="WizardStep1 " runat="server" Title="Step 1">Step1Data :

<asp:TextBox ID="Step1DataTe xtBox" runat="server" Text='<%#
Bind("Step1Data ") %>'></asp:TextBox><br />

</asp:WizardStep>

<asp:WizardSt ep ID="WizardStep2 " runat="server" Title="Step 2">Step2Data :

<asp:TextBox ID="Step2DataTe xtBox" runat="server" Text='<%#
Bind("Step2Data ") %>'></asp:TextBox><br />

</asp:WizardStep>

<asp:WizardSt ep ID="WizardStep3 " runat="server" Title="Step 3">Step3Data :

<asp:TextBox ID="Step3DataTe xtBox" runat="server" Text='<%#
Bind("Step3Data ") %>'></asp:TextBox><br />

</asp:WizardStep>

<asp:WizardSt ep ID="WizardStep4 " runat="server" Title="Step 4">Step4Data :

<asp:TextBox ID="Step4DataTe xtBox" runat="server" Text='<%#
Bind("Step4Data ") %>'></asp:TextBox><br />

</asp:WizardStep>

</WizardSteps>

</asp:Wizard>

&nbsp;&nbsp;

</InsertItemTempl ate>

</asp:FormView>

</div>

</form>

</body>

</html>


Jan 5 '06 #1
2 4267
Hi John,

Welcome to ASPNET newsgroup.
As for the using FormView control together with Wizard control to perform
data inserting problem , based on my understanding, it is likely due to the
Wizard control itself is a Naming Container which cause its child control
can not be recognized by the FormView's template(only direct nested Control
will be recognized....) ...

So far I'm thinking use Control Parameter to map sub control and the insert
parameters, but seems it'll be also a bit hard. Anyway, I'll perform some
further test to see whether there is any other means to workaround this and
will update you soon.

Thanks,

Steven Cheng
Microsoft Online Support

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


--------------------
| From: "John R. Lewis" <jo********@nos pam.nospam>
| Subject: asp:Wizard inside of a asp:FormView breaks two-way databinding
| Date: Thu, 5 Jan 2006 10:48:11 -0800
| Lines: 160
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <uw************ **@TK2MSFTNGP09 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-19-165-1.hsd1.wa.comca st.net 24.19.165.1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP09.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3688 31
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I posted this yesterday with a different email address. I am reposting
with
| my fake-address as given to me by Microsoft so that I can be guraranteed
a
| response from a support representative. Sorry for the repost.
|
| I'd like to make use of the asp:Wizard control to present a step-by-step
| guided experience for my user to fill out a complicated data-entry form.
|
| I'd like to make use of two-way databinding provided by the asp:FormView
| control to drasticly reduce the number of lines of code I need to write.
|
| But when I combine those two controls, databinding breaks. Please see the
| example below. The database in this example is a simple access database
with
| a single table My real life example is way to complicated to describe
here,
| but this simple case reproduces the problem.
|
| If you run through the wizard, clicking Finish causes a record to be
| inserted with null values in all the fields. What I don't show here, is
if
| you strip out the wizard control, everything works fine.
|
| <%@ Page Language="C#" %>
|
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
|
| <script runat="server">
|
| protected void Wizard1_FinishB uttonClick(obje ct sender,
| WizardNavigatio nEventArgs e)
|
| {
|
| FormView1.Inser tItem(true);
|
| }
|
| </script>
|
| <html xmlns="http://www.w3.org/1999/xhtml" >
|
| <head runat="server">
|
| <title>Untitl ed Page</title>
|
| </head>
|
| <body>
|
| <form id="form1" runat="server">
|
| <div>
|
| <asp:AccessData Source ID="AccessDataS ource1" runat="server"
| DataFile="~/App_Data/db1.mdb"
|
| InsertCommand=" INSERT INTO [Thing] ([Step1Data], [Step2Data],
[Step3Data],
| [Step4Data]) VALUES (?, ?, ?, ?)"
|
| SelectCommand=" SELECT * FROM [Thing]">
|
| <InsertParamete rs>
|
| <asp:Paramete r Name="Step1Data " Type="String" />
|
| <asp:Paramete r Name="Step2Data " Type="String" />
|
| <asp:Paramete r Name="Step3Data " Type="String" />
|
| <asp:Paramete r Name="Step4Data " Type="String" />
|
| </InsertParameter s>
|
| </asp:AccessDataS ource>
|
| <asp:GridView ID="GridView1" runat="server" AutoGenerateCol umns="False"
| DataKeyNames="T hingID"
|
| DataSourceID="A ccessDataSource 1">
|
| <Columns>
|
| <asp:BoundFie ld DataField="Thin gID" HeaderText="Thi ngID"
| InsertVisible=" False" ReadOnly="True"
|
| SortExpression= "ThingID" />
|
| <asp:BoundFie ld DataField="Step 1Data" HeaderText="Ste p1Data"
| SortExpression= "Step1Data" />
|
| <asp:BoundFie ld DataField="Step 2Data" HeaderText="Ste p2Data"
| SortExpression= "Step2Data" />
|
| <asp:BoundFie ld DataField="Step 3Data" HeaderText="Ste p3Data"
| SortExpression= "Step3Data" />
|
| <asp:BoundFie ld DataField="Step 4Data" HeaderText="Ste p4Data"
| SortExpression= "Step4Data" />
|
| </Columns>
|
| </asp:GridView>
|
| <asp:FormView ID="FormView1" runat="server"
DataSourceID="A ccessDataSource 1"
| DataKeyNames="T hingID" DefaultMode="In sert">
|
| <InsertItemTemp late>
|
| <asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex ="0"
| OnFinishButtonC lick="Wizard1_F inishButtonClic k">
|
| <WizardSteps>
|
| <asp:WizardSt ep ID="WizardStep1 " runat="server" Title="Step 1">Step1Data :
|
| <asp:TextBox ID="Step1DataTe xtBox" runat="server" Text='<%#
| Bind("Step1Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| <asp:WizardSt ep ID="WizardStep2 " runat="server" Title="Step 2">Step2Data :
|
| <asp:TextBox ID="Step2DataTe xtBox" runat="server" Text='<%#
| Bind("Step2Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| <asp:WizardSt ep ID="WizardStep3 " runat="server" Title="Step 3">Step3Data :
|
| <asp:TextBox ID="Step3DataTe xtBox" runat="server" Text='<%#
| Bind("Step3Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| <asp:WizardSt ep ID="WizardStep4 " runat="server" Title="Step 4">Step4Data :
|
| <asp:TextBox ID="Step4DataTe xtBox" runat="server" Text='<%#
| Bind("Step4Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| </WizardSteps>
|
| </asp:Wizard>
|
| &nbsp;&nbsp;
|
| </InsertItemTempl ate>
|
| </asp:FormView>
|
| </div>
|
| </form>
|
| </body>
|
| </html>
|
|
|
|
|

Jan 6 '06 #2
Hi Steven,

What is the status on this?

I saw this was an issue in Beta 2, Bug ID: FDBK27772,
http://lab.msdn.microsoft.com/Produc...1-7e93b1d52077,
inside naming containers (multiview, panel, etc) and fixed in a later build.

If you suspect this to be the case for the wizard, why didn't FDBK27772 fix
it also?

Thanks,

Doug
"Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
news:vR******** ******@TK2MSFTN GXA02.phx.gbl.. .
Hi John,

Welcome to ASPNET newsgroup.
As for the using FormView control together with Wizard control to perform
data inserting problem , based on my understanding, it is likely due to
the
Wizard control itself is a Naming Container which cause its child control
can not be recognized by the FormView's template(only direct nested
Control
will be recognized....) ...

So far I'm thinking use Control Parameter to map sub control and the
insert
parameters, but seems it'll be also a bit hard. Anyway, I'll perform some
further test to see whether there is any other means to workaround this
and
will update you soon.

Thanks,

Steven Cheng
Microsoft Online Support

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


--------------------
| From: "John R. Lewis" <jo********@nos pam.nospam>
| Subject: asp:Wizard inside of a asp:FormView breaks two-way databinding
| Date: Thu, 5 Jan 2006 10:48:11 -0800
| Lines: 160
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <uw************ **@TK2MSFTNGP09 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-19-165-1.hsd1.wa.comca st.net 24.19.165.1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP09.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3688 31
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I posted this yesterday with a different email address. I am reposting
with
| my fake-address as given to me by Microsoft so that I can be guraranteed
a
| response from a support representative. Sorry for the repost.
|
| I'd like to make use of the asp:Wizard control to present a step-by-step
| guided experience for my user to fill out a complicated data-entry form.
|
| I'd like to make use of two-way databinding provided by the asp:FormView
| control to drasticly reduce the number of lines of code I need to write.
|
| But when I combine those two controls, databinding breaks. Please see
the
| example below. The database in this example is a simple access database
with
| a single table My real life example is way to complicated to describe
here,
| but this simple case reproduces the problem.
|
| If you run through the wizard, clicking Finish causes a record to be
| inserted with null values in all the fields. What I don't show here, is
if
| you strip out the wizard control, everything works fine.
|
| <%@ Page Language="C#" %>
|
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
|
| <script runat="server">
|
| protected void Wizard1_FinishB uttonClick(obje ct sender,
| WizardNavigatio nEventArgs e)
|
| {
|
| FormView1.Inser tItem(true);
|
| }
|
| </script>
|
| <html xmlns="http://www.w3.org/1999/xhtml" >
|
| <head runat="server">
|
| <title>Untitl ed Page</title>
|
| </head>
|
| <body>
|
| <form id="form1" runat="server">
|
| <div>
|
| <asp:AccessData Source ID="AccessDataS ource1" runat="server"
| DataFile="~/App_Data/db1.mdb"
|
| InsertCommand=" INSERT INTO [Thing] ([Step1Data], [Step2Data],
[Step3Data],
| [Step4Data]) VALUES (?, ?, ?, ?)"
|
| SelectCommand=" SELECT * FROM [Thing]">
|
| <InsertParamete rs>
|
| <asp:Paramete r Name="Step1Data " Type="String" />
|
| <asp:Paramete r Name="Step2Data " Type="String" />
|
| <asp:Paramete r Name="Step3Data " Type="String" />
|
| <asp:Paramete r Name="Step4Data " Type="String" />
|
| </InsertParameter s>
|
| </asp:AccessDataS ource>
|
| <asp:GridView ID="GridView1" runat="server" AutoGenerateCol umns="False"
| DataKeyNames="T hingID"
|
| DataSourceID="A ccessDataSource 1">
|
| <Columns>
|
| <asp:BoundFie ld DataField="Thin gID" HeaderText="Thi ngID"
| InsertVisible=" False" ReadOnly="True"
|
| SortExpression= "ThingID" />
|
| <asp:BoundFie ld DataField="Step 1Data" HeaderText="Ste p1Data"
| SortExpression= "Step1Data" />
|
| <asp:BoundFie ld DataField="Step 2Data" HeaderText="Ste p2Data"
| SortExpression= "Step2Data" />
|
| <asp:BoundFie ld DataField="Step 3Data" HeaderText="Ste p3Data"
| SortExpression= "Step3Data" />
|
| <asp:BoundFie ld DataField="Step 4Data" HeaderText="Ste p4Data"
| SortExpression= "Step4Data" />
|
| </Columns>
|
| </asp:GridView>
|
| <asp:FormView ID="FormView1" runat="server"
DataSourceID="A ccessDataSource 1"
| DataKeyNames="T hingID" DefaultMode="In sert">
|
| <InsertItemTemp late>
|
| <asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex ="0"
| OnFinishButtonC lick="Wizard1_F inishButtonClic k">
|
| <WizardSteps>
|
| <asp:WizardSt ep ID="WizardStep1 " runat="server" Title="Step
1">Step1Data :
|
| <asp:TextBox ID="Step1DataTe xtBox" runat="server" Text='<%#
| Bind("Step1Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| <asp:WizardSt ep ID="WizardStep2 " runat="server" Title="Step
2">Step2Data :
|
| <asp:TextBox ID="Step2DataTe xtBox" runat="server" Text='<%#
| Bind("Step2Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| <asp:WizardSt ep ID="WizardStep3 " runat="server" Title="Step
3">Step3Data :
|
| <asp:TextBox ID="Step3DataTe xtBox" runat="server" Text='<%#
| Bind("Step3Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| <asp:WizardSt ep ID="WizardStep4 " runat="server" Title="Step
4">Step4Data :
|
| <asp:TextBox ID="Step4DataTe xtBox" runat="server" Text='<%#
| Bind("Step4Data ") %>'></asp:TextBox><br />
|
| </asp:WizardStep>
|
| </WizardSteps>
|
| </asp:Wizard>
|
| &nbsp;&nbsp;
|
| </InsertItemTempl ate>
|
| </asp:FormView>
|
| </div>
|
| </form>
|
| </body>
|
| </html>
|
|
|
|
|

Jan 25 '06 #3

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

Similar topics

6
1204
by: talkingwall | last post by:
Hi - I was hired to trouble shoot ASP 3.0 report performance for a company in Scottsdale. When I got here I discovered that the classic asp 3.0 reports are actually running in an IFrame embedded in a dot net nuke ( http://www.dotnetnuke.com )page. I cannot see any evidence where programming has been done to facilitate co-managed sessions between .net and classic asp and I believe something is required. While I've been able to solve a...
1
2713
by: Phillip Ian | last post by:
Seems like this should be straightforward enough, but I can't get anything to show. I have a class cClient which has as one of its properties a list of addresses. Inside the cClient FormView, I want to have a DataList that shows this list of addresses. I can't seem to get the binding right though. What I've got so far:
1
2101
by: sck10 | last post by:
Hello, I am pulling data from a SQL Server table. One field that is (varchar 4000) is used to show notes. I am using a FormView for showing and editing the data. When the form is in Item view, the text runs together. All the line breaks are missing. When I enter into Edit mode, the text is formatted as it was entered (line breaks). How can I fix this so that when in "Item" mode, the line breaks show?
1
1667
by: photo | last post by:
Hi! I am new to .net (vb) and moving from classic asp. I ran into a problem that has left me with less hair on my head. For some reason, my button and calendar that sits inside an insertItemTemplate in a FormView, will not allow me to declare it. The controls (Calendar1, InvoiceDate) are in the page and names are correct. Here is the sub I am using.
6
2086
by: Douglas J. Badin | last post by:
Earlier this month, there was a posting about this without a definitive answer. If you place a Wizard inside a FormView's EditItemTemplate the bound fields contained within the View will display the data from the fields to which they are bound; yet they will return null values when the 'Update' LinkButton is clicked. The responder thought this might have something to do with naming containers. If so, this is similar to an issue in...
3
3431
by: Jurgen Appelo | last post by:
I asked this question earlier, but unfortunately the two replies I got did not solve the problem. Here it is again, but now with the code: After an Update my FormView always loses its viewstate values. The field values in the FormView are always overwritten by the results of the Update method in the business layer. No matter what I do, the databind always takes place, even when I don't want it to. See the example below. This is a...
0
1790
by: mark d. | last post by:
I'm using a formview control to display/edit/insert data that is populated from an sqldatasource. One of the values is a pipe delimited string that represents multiple items. Within the edititemtemplate for this field I have a label and checkboxlist. Within the checkboxlist databound event I take the label and split up the string then set the appropriate checkboxes to selected. My question is how to update this field. I've looked...
5
4681
by: =?Utf-8?B?QWRhciBXZXNsZXk=?= | last post by:
Hi All, I have a GridView inside the EditItemTemplate of a FormView. Both FormView and GridView are data bound using an ObjectDataSource. When the FormView's ObjectDataSource object has a SelectParameters with a SessionParameter in the parameters collection and the object stored in the Session is a reference type, the DataGrid fails to enter Line Editing mode. Is this a bug? Is there a workaround for this problem?
1
6120
by: Brad Baker | last post by:
I have created a usercontrol (ascx file) which contains a formview, inside of the formview I have an EditItemTemplate and an ItemTemplate. Both the EditItemTemplate and ItemTemplate have link buttons which call some code to changed the formview mode from Edit to ReadOnly or vice versa. When I run the code though and click the link buttons, the formview doesn't switch modes (the page reloads the mode just doesn't change) Here is the code...
9
4697
by: steve waugh | last post by:
I've got two cute editor controls each in a different WIZARD step. My javascript seems to be working from the first step and javascript events firing but when I go to the second step (containing a second editor) and then go back to the first step I find that the OnInitialized and OnChange events are no longer firing for the first editor. I had assumed that these events would always fire for any cute editors on a page? Thx in advance
0
9298
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,...
1
9885
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
9737
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...
0
8737
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7286
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
5172
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...
0
5329
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3829
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
2698
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.