473,749 Members | 2,451 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

custom container control - wrapping child controls

I am trying to create a custom container control that will only ever contain
a specific type of control.
At design time, when a control of a different type is added to the container
I would like to wrap the control in the proper control type - which is also
a container.

At design time I want to be able to turn this :

<my:container >
<asp:textbox />
</my:container>

into this :

<my:container >
<my:wrapper>
<asp:textbox />
</my:wrapper>
</my:container>

It is no problem to detect what type of object is being added to the control
and I can do the wrapping easy enough for the rendered control , but I can't
see how to change the physical markup as displayed in the designer and
stored in the .aspx file.

Webparts does something similar but it looks like the designer source has
not been made available.

Anyone know how to do this or have any ideas on how this might be done ?

Gerry
Jul 23 '08 #1
5 4126
Hi Gerry,

From your description, you're developing a custom server control which
contains some inner controls, and you want to make some certain kind of
nested subcontrols be wrapper with another control automatically at
design-time, correct?

I've performed some research on this. So far for nested controls, the
custom control itself should be set as "ParseChild ren" as false so that
inner markup will be interpreted as control instances. I think you've also
ready done this, correct? Generally, for design-time custoimzation, we
have two tools:

1. A custom control designer

2. A custom control parser

So far I only got some interfaces for customzing the displaying html from
Control Designer , but not the inline markup of the control. Also,
controlbuilder seems focus on the nested control's parsing and population
at runtime. Is there are any particular requirement in your page or
control that it will need such an wrapper element? Maybe we can also look
for some other means on this.

I'll do some further research on this and inform you if I get any new
finding.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "gerry" <ge***@newsgrou p.nospam>
Subject: custom container control - wrapping child controls
Date: Wed, 23 Jul 2008 09:41:31 -0400
>
I am trying to create a custom container control that will only ever
contain
>a specific type of control.
At design time, when a control of a different type is added to the
container
>I would like to wrap the control in the proper control type - which is
also
>a container.

At design time I want to be able to turn this :

<my:container >
<asp:textbox />
</my:container>

into this :

<my:container >
<my:wrapper>
<asp:textbox />
</my:wrapper>
</my:container>

It is no problem to detect what type of object is being added to the
control
>and I can do the wrapping easy enough for the rendered control , but I
can't
>see how to change the physical markup as displayed in the designer and
stored in the .aspx file.

Webparts does something similar but it looks like the designer source has
not been made available.

Anyone know how to do this or have any ideas on how this might be done ?

Gerry
Jul 24 '08 #2
Hi Gerry,

How are you doing?

Regarding on this issue, I've performed some further research and discussed
with some other ASP.NET engineers.

So far we can think of one way to achieve this, but I think it is total
overkill. Whenever your template is persisted (when GetPersistenceC ontent()
is called), you could examine your control tree and modify it to make sure
it contains the container controls. You could then persist that control
tree into text, then re-parse it into an ITemplate and set your property to
that value. Then when ASP.NET persists your template it'll persist the
modified template.

Some scenarios that are a bit similar to this are that the MultiView
control can only contain View controls. Similarly, WebPartZones can only
contain WebParts. You might want to dig into their designer and runtime
code to see how they handle this. I've used the reflector tool to inspect
the code abit and find some code logic for gettting the current inner
content of control. But may still need more effort on setting the content.

Have you got any progress on your side?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Content-Transfer-Encoding: 7bit
From: st*****@online. microsoft.com (Steven Cheng [MSFT])
Organization : Microsoft
Date: Thu, 24 Jul 2008 07:43:56 GMT
Subject: RE: custom container control - wrapping child controls
>
Hi Gerry,

From your description, you're developing a custom server control which
contains some inner controls, and you want to make some certain kind of
nested subcontrols be wrapper with another control automatically at
design-time, correct?

I've performed some research on this. So far for nested controls, the
custom control itself should be set as "ParseChild ren" as false so that
inner markup will be interpreted as control instances. I think you've also
ready done this, correct? Generally, for design-time custoimzation, we
have two tools:

1. A custom control designer

2. A custom control parser

So far I only got some interfaces for customzing the displaying html from
Control Designer , but not the inline markup of the control. Also,
controlbuild er seems focus on the nested control's parsing and population
at runtime. Is there are any particular requirement in your page or
control that it will need such an wrapper element? Maybe we can also look
for some other means on this.

I'll do some further research on this and inform you if I get any new
finding.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microso ft.com.

============== =============== =============== ======
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ault.aspx#noti
f
>ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
============== =============== =============== ======
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>>From: "gerry" <ge***@newsgrou p.nospam>
Subject: custom container control - wrapping child controls
Date: Wed, 23 Jul 2008 09:41:31 -0400
>>
I am trying to create a custom container control that will only ever
contain
>>a specific type of control.
At design time, when a control of a different type is added to the
container
>>I would like to wrap the control in the proper control type - which is
also
>>a container.

At design time I want to be able to turn this :

<my:container >
<asp:textbox />
</my:container>

into this :

<my:container >
<my:wrapper>
<asp:textbox />
</my:wrapper>
</my:container>

It is no problem to detect what type of object is being added to the
control
>>and I can do the wrapping easy enough for the rendered control , but I
can't
>>see how to change the physical markup as displayed in the designer and
stored in the .aspx file.

Webparts does something similar but it looks like the designer source has
not been made available.

Anyone know how to do this or have any ideas on how this might be done ?

Gerry

Aug 4 '08 #3
thanks steven,

I gave up on this for now - I just made it a requirement that the user must
manually wrap the controls - along with a few other manual design time
issues.

I went the same route using reflector trying to trace through how webparts
do it and even how list controls convert an edited list into embedded html
but it didn't help much.

If System.Design.p db had been included in the framework source distro I
think tracing through the process in the debugger would have helped
immensely - but for whatever reason this was not included. I even tried
recompiling System.Design.d ll as exported from reflector - but it appears
that reflector has some issues with its output that would make this a pretty
daunting if not impossible task - the biggest problem being the generated
code calling methods on objects in other assemblies marked as internal. IMO
the framework contains WAY too many internal elements especially trivial
elements - but I digress.

I will dig into this again at a later time - with the extolling of vs
extensibility I would have expected all of the design time capabilitied to
be fully documented and base functionality to be publicly available for use
as base classes rather than undocumented and hidden away in 'internal' code.
Hopefully this stuff is available through vsip or some such and I just
haven't stumbled my way across it yet.

I haven't found any in depth books on the subject of vs design time
support - can you recommend any ?



"Steven Cheng [MSFT]" <st*****@online .microsoft.comw rote in message
news:1U******** *****@TK2MSFTNG HUB02.phx.gbl.. .
Hi Gerry,

How are you doing?

Regarding on this issue, I've performed some further research and
discussed
with some other ASP.NET engineers.

So far we can think of one way to achieve this, but I think it is total
overkill. Whenever your template is persisted (when
GetPersistenceC ontent()
is called), you could examine your control tree and modify it to make sure
it contains the container controls. You could then persist that control
tree into text, then re-parse it into an ITemplate and set your property
to
that value. Then when ASP.NET persists your template it'll persist the
modified template.

Some scenarios that are a bit similar to this are that the MultiView
control can only contain View controls. Similarly, WebPartZones can only
contain WebParts. You might want to dig into their designer and runtime
code to see how they handle this. I've used the reflector tool to inspect
the code abit and find some code logic for gettting the current inner
content of control. But may still need more effort on setting the content.

Have you got any progress on your side?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>>Content-Transfer-Encoding: 7bit
From: st*****@online. microsoft.com (Steven Cheng [MSFT])
Organizatio n: Microsoft
Date: Thu, 24 Jul 2008 07:43:56 GMT
Subject: RE: custom container control - wrapping child controls
>>
Hi Gerry,

From your description, you're developing a custom server control which
contains some inner controls, and you want to make some certain kind of
nested subcontrols be wrapper with another control automatically at
design-time, correct?

I've performed some research on this. So far for nested controls, the
custom control itself should be set as "ParseChild ren" as false so that
inner markup will be interpreted as control instances. I think you've also
ready done this, correct? Generally, for design-time custoimzation, we
have two tools:

1. A custom control designer

2. A custom control parser

So far I only got some interfaces for customzing the displaying html from
Control Designer , but not the inline markup of the control. Also,
controlbuilde r seems focus on the nested control's parsing and population
at runtime. Is there are any particular requirement in your page or
control that it will need such an wrapper element? Maybe we can also look
for some other means on this.

I'll do some further research on this and inform you if I get any new
finding.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@micros oft.com.

============= =============== =============== =======
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ault.aspx#noti
f
>>ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professiona l working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
============= =============== =============== =======
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>>>From: "gerry" <ge***@newsgrou p.nospam>
Subject: custom container control - wrapping child controls
Date: Wed, 23 Jul 2008 09:41:31 -0400
>>>
I am trying to create a custom container control that will only ever
contain
>>>a specific type of control.
At design time, when a control of a different type is added to the
container
>>>I would like to wrap the control in the proper control type - which is
also
>>>a container.

At design time I want to be able to turn this :

<my:container >
<asp:textbox />
</my:container>

into this :

<my:container >
<my:wrapper>
<asp:textbox />
</my:wrapper>
</my:container>

It is no problem to detect what type of object is being added to the
control
>>>and I can do the wrapping easy enough for the rendered control , but I
can't
>>>see how to change the physical markup as displayed in the designer and
stored in the .aspx file.

Webparts does something similar but it looks like the designer source has
not been made available.

Anyone know how to do this or have any ideas on how this might be done ?

Gerry


Aug 5 '08 #4
Thanks for your reply Gerry,

Yes, for temporary solution, perform runtime checking and control wrapper
will be much easier.

Also, I agree that for ASP.NET custom control programming, the resource for
design-time part is still quite limited and I do have received such
feedback before. So far the MSDN contains some basic design-time
programming reference:

http://msdn.microsoft.com/en-us/libr...ha(VS.85).aspx

For other books, there are some books written by some MVP or other guys:

#Data Source Controls (Part 5 - Design Time Functionality)
http://www.nikhilk.net/DataSourceCon...esignTime.aspx

And I would recommemd you some MS dev engineer's blog since there are some
useful tech articles and information there. Actually, sometimes I also
discuss with some of them for ideas of design-time issues:

http://weblogs.asp.net/leftslipper/a...es-to-consider
-applying-when-writing-a-custom-control.aspx

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.--------------------
>From: "gerry" <ge***@newsgrou p.nospam>
References: <u1************ **@TK2MSFTNGP03 .phx.gbl>
<01************ **@TK2MSFTNGHUB 02.phx.gbl>
<1U************ *@TK2MSFTNGHUB0 2.phx.gbl>
>Subject: Re: custom container control - wrapping child controls
Date: Tue, 5 Aug 2008 09:01:21 -0400
>thanks steven,

I gave up on this for now - I just made it a requirement that the user
must
>manually wrap the controls - along with a few other manual design time
issues.

I went the same route using reflector trying to trace through how webparts
do it and even how list controls convert an edited list into embedded html
but it didn't help much.

If System.Design.p db had been included in the framework source distro I
think tracing through the process in the debugger would have helped
immensely - but for whatever reason this was not included. I even tried
recompiling System.Design.d ll as exported from reflector - but it appears
that reflector has some issues with its output that would make this a
pretty
>daunting if not impossible task - the biggest problem being the generated
code calling methods on objects in other assemblies marked as internal.
IMO
>the framework contains WAY too many internal elements especially trivial
elements - but I digress.

I will dig into this again at a later time - with the extolling of vs
extensibilit y I would have expected all of the design time capabilitied to
be fully documented and base functionality to be publicly available for
use
>as base classes rather than undocumented and hidden away in 'internal'
code.
>Hopefully this stuff is available through vsip or some such and I just
haven't stumbled my way across it yet.

I haven't found any in depth books on the subject of vs design time
support - can you recommend any ?
Aug 6 '08 #5
Thanks Steven.

"Steven Cheng [MSFT]" <st*****@online .microsoft.comw rote in message
news:7k******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Thanks for your reply Gerry,

Yes, for temporary solution, perform runtime checking and control wrapper
will be much easier.

Also, I agree that for ASP.NET custom control programming, the resource
for
design-time part is still quite limited and I do have received such
feedback before. So far the MSDN contains some basic design-time
programming reference:

http://msdn.microsoft.com/en-us/libr...ha(VS.85).aspx

For other books, there are some books written by some MVP or other guys:

#Data Source Controls (Part 5 - Design Time Functionality)
http://www.nikhilk.net/DataSourceCon...esignTime.aspx

And I would recommemd you some MS dev engineer's blog since there are some
useful tech articles and information there. Actually, sometimes I also
discuss with some of them for ideas of design-time issues:

http://weblogs.asp.net/leftslipper/a...es-to-consider
-applying-when-writing-a-custom-control.aspx

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.--------------------
>>From: "gerry" <ge***@newsgrou p.nospam>
References: <u1************ **@TK2MSFTNGP03 .phx.gbl>
<01************ **@TK2MSFTNGHUB 02.phx.gbl>
<1U************ *@TK2MSFTNGHUB0 2.phx.gbl>
>>Subject: Re: custom container control - wrapping child controls
Date: Tue, 5 Aug 2008 09:01:21 -0400
>>thanks steven,

I gave up on this for now - I just made it a requirement that the user
must
>>manually wrap the controls - along with a few other manual design time
issues.

I went the same route using reflector trying to trace through how webparts
do it and even how list controls convert an edited list into embedded html
but it didn't help much.

If System.Design.p db had been included in the framework source distro I
think tracing through the process in the debugger would have helped
immensely - but for whatever reason this was not included. I even tried
recompiling System.Design.d ll as exported from reflector - but it appears
that reflector has some issues with its output that would make this a
pretty
>>daunting if not impossible task - the biggest problem being the generated
code calling methods on objects in other assemblies marked as internal.
IMO
>>the framework contains WAY too many internal elements especially trivial
elements - but I digress.

I will dig into this again at a later time - with the extolling of vs
extensibili ty I would have expected all of the design time capabilitied to
be fully documented and base functionality to be publicly available for
use
>>as base classes rather than undocumented and hidden away in 'internal'
code.
>>Hopefully this stuff is available through vsip or some such and I just
haven't stumbled my way across it yet.

I haven't found any in depth books on the subject of vs design time
support - can you recommend any ?

Aug 6 '08 #6

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

Similar topics

2
2225
by: Juan Romero | last post by:
Hey guys, I am working on a web custom control that basically draws a table (ASP Table) with a few child controls in the cells. I have a command button inside one of these cells. The problem I am running into is that I cannot get the click event of this object handled. I have tried wiring the event with "AddHandler" among other things and that seems not to work neither.
1
1648
by: Chris Newby | last post by:
I have a custom control that derives from the WebControls.Panel class. In a given ASPX document, I have an instance of my custom control with ID set to "MyControl". Then I put a WebControls.TextBox control inside my custom control with ID set to "MyTextBox". When this page renderes, inspection of the HTML source shows that the Name attribute of the input tag generated from MyTextBox is now actually
9
4691
by: Jaybuffet | last post by:
my aspx has something like this <asp:Repeater id="Repeater1" runat="server"> <ItemTemplate> <mycontrol:ctl id="ctlId" obj='<%# Container.DataItem %>' showItem="true"/> </ItemTemplate> /asp:Repeater> The DataSource for this Repeater is a CollectionBase of objects and is
0
2600
by: Joe | last post by:
Anyone have any experience using custom snaplines? I have a usercontrol that acts as a container for several child controls. I wrote an inherited ControlDesigner to handle some custom actions for this control, mainly to allow some resizing of the usercontrol's child controls inside the designer. All works well so far. Now I want to add a custom snapline that aligns to the edge of one of the internal controls. Done. If I move two of...
0
1607
by: pabloazorin | last post by:
I developed a Date Picker web control using C# and .net framework 1.1 I added my control to Visual Studio 2003 IDE toolbar. When I drag and drop my control to design web page, the control renders correctly. If I change to HTML the generated html is <cc1:IT24DateTime id="IT24DateTime1" runat="server" Type="Date"></cc1:IT24DateTime> .... and that works correctly.
15
6520
by: rizwanahmed24 | last post by:
Hello i have made a custom control. i have placed a panel on it. I want this panel to behave just like the normal panel. The problem i was having is that the panel on my custom control doesnt accept other controls. The control i drag drop on it becomes the child of my custom control's parent form and not the child of my custom control. Then i added this line "" before my custom control class (i dont know what this line does). Now
11
3286
by: Nick Gilbert | last post by:
Hi, How can I create a custom control which will wrap its content in a header and footer? eg: Is it possible to create a .NET user control which can surround other controls? eg: <my:RoundedCornerBox id=foo runat=server>
1
2232
by: mnuckols | last post by:
I am trying to create a custom container control for Windows Forms using C#.NET 2.0. My problem is that I want only part of the control to allow other controls to be placed on it at design time. A similar example to what I'm trying to accomplish is a Tab Control. The tab pages of a tab control allow child controls to be added to the page region, but not to the tab. Does anyone know how to accomplish this?
0
274
by: gerry | last post by:
I am trying to create a custom container control that will only ever contain a specific type of control. At design time, when a control of a different type is added to the container I would like to wrap the control in the proper control type - which is also a container. At design time I want to be able to turn this : <my:container> <asp:textbox />
0
8997
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
9389
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
9335
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
9256
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
6801
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
4709
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
4881
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3320
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
2218
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.