473,804 Members | 2,145 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Page showing as not valid

I have a page that is showing as:

Page.IsValid = False

on postback when my submit button is pressed but none of my Validators have
fired so there is no error message.

How do I find out what is making the Page invalid?

Thanks,

Tom
Feb 14 '07 #1
7 1802
Well, here are some questions/tests that might help you and some of us in
the newsgroups answer your question:

1. How do you know that none of the Validators fired?

2. What is the value for the CausesValidatio n property of any Buttons,
TextBoxes, DropDownLists, or other controls that might have that property on
your page?

It may also help us answer your question if we could see your code so that
we know exactly what is happening on your page, so you may want to post it.
Good Luck!
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
>I have a page that is showing as:

Page.IsValid = False

on postback when my submit button is pressed but none of my Validators
have fired so there is no error message.

How do I find out what is making the Page invalid?

Thanks,

Tom

Feb 15 '07 #2
"Nathan Sokalski" <nj********@hot mail.comwrote in message
news:OE******** ******@TK2MSFTN GP05.phx.gbl...
Well, here are some questions/tests that might help you and some of us in
the newsgroups answer your question:

1. How do you know that none of the Validators fired?
Because I have no error messages. I have only 2 Validators

<td ><asp:TextBox ID="RequestedSt artDate" Columns="12"
runat="server"/>
(Applicant will have the option to request an alternative date)
<asp:RequiredFi eldValidator runat="server"
ControlToValida te="RequestedSt artDate"
Display="Dynami c"
Type="Date" text="<br>Start Date Required"/>
<asp:RegularExp ressionValidato r
ControlToValida te="RequestedSt artDate"
ValidationExpre ssion="^(([1-9])|(0[1-9])|(1[0-2]))\/(([1-9])|(0[1-9])|(1[0-9])|(2[0-9])|(3[0-1]))\/((\d{2})|(\d{4} ))$"
Display="Dynami c"
Text="<br>From Date Invalid or in Wrong Format(MM/DD/YY)"
runat="server"/>
>
2. What is the value for the CausesValidatio n property of any Buttons,
TextBoxes, DropDownLists, or other controls that might have that property
on your page?
I don't have anything set for the CausesValidatio n of any objects. I have 2
textboxes and about 10 dropdowns.
>
It may also help us answer your question if we could see your code so that
we know exactly what is happening on your page, so you may want to post
it.
It would be a little hard to post as it is a large page which is a One page
(not code-behind) style.

The test is:

trace.warn("Bef ore Page.IsValid if Page.IsValid = " & Page.IsValid )
If not Page.IsValid then
Exit Sub
End if

In the above code Page.IsValid is set to false.

Thanks,

Tom
Good Luck!
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
>>I have a page that is showing as:

Page.IsValid = False

on postback when my submit button is pressed but none of my Validators
have fired so there is no error message.

How do I find out what is making the Page invalid?

Thanks,

Tom


Feb 22 '07 #3
I think I found the problem but not why. It has to do with the fact that
HTML comments don't seem to work with asp.net.
I have the following page:
*************** *************** *************** ***********
<%@ Page Language="VB" trace="true" ContentType="te xt/html"
ResponseEncodin g="iso-8859-1" Inherits="MyFun ctions.Page" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ Import Namespace="Syst em.Data" %>
<%@ Import Namespace="Syst em.Data.SqlClie nt" %>
<%@ Import Namespace="MyFu nctions" %>
<Script runat="server">
Sub Page_Load(s as Object, e as EventArgs)
Dim item as ListItem
Dim oLabel as Label
if not IsPostBack then
ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")
end if
end sub

Sub SubmitNewHire_C lick(s as Object, e as ImageClickEvent Args)
Dim pageError as Boolean = false
trace.warn("Bef ore Page.IsValid if Page.IsValid = " & Page.IsValid & "
PageError = " & pageError)
If not Page.IsValid then
Exit Sub
End if
End Sub
</script>
<html>
<head>
<title>:: Staffing Workshop ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body id="myBody" runat="server">
<form runat="server">
<asp:TextBox ID="RequestedSt artDate" Columns="12" runat="server"/>
<!-- <asp:CompareVal idator runat="server" ID="ValidateDat e"
ControlToValida te="RequestedSt artDate"
Operator="Great erThan"
Display="Dynami c"
Type="Date" text="<br>Inval id Start Date"/>
-->
<asp:ImageButto n ImageUrl="../../buttons/submit_0.gif"
OnClick="Submit NewHire_Click" runat="server"/>
</form>
</body>
</html>
*************** *************** *************** *************** *

I should get an error here.

I have the Validator commented out but the line:

ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")

Still seems to work. I should get an error that says that there is no such
object ValidateDate (as it is commented out). If I delete the Validator - I
get the error.

If I take out the ValidateDate.Va lueToCompare line, I get an error saying
that '' is not a valid date. Why would I get that error if this Validator
is commented out? I get this error as I am entering the page.

This was why I was getting the error.

I was putting in yesterdays date (which the validator says I can't do). So
the page is showing as not valid. But since the Validator is commented
out - the error message doesn't show (which it does if I don't comment it
out).

What gives?

Thanks,

Tom
Feb 22 '07 #4
When commenting out an ASP.NET tag, you need to use <%-- --%rather than
<!-- -->. This should solve your problem. Good Luck!
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:uf******** ******@TK2MSFTN GP04.phx.gbl...
>I think I found the problem but not why. It has to do with the fact that
HTML comments don't seem to work with asp.net.
I have the following page:
*************** *************** *************** ***********
<%@ Page Language="VB" trace="true" ContentType="te xt/html"
ResponseEncodin g="iso-8859-1" Inherits="MyFun ctions.Page" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ Import Namespace="Syst em.Data" %>
<%@ Import Namespace="Syst em.Data.SqlClie nt" %>
<%@ Import Namespace="MyFu nctions" %>
<Script runat="server">
Sub Page_Load(s as Object, e as EventArgs)
Dim item as ListItem
Dim oLabel as Label
if not IsPostBack then
ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")
end if
end sub

Sub SubmitNewHire_C lick(s as Object, e as ImageClickEvent Args)
Dim pageError as Boolean = false
trace.warn("Bef ore Page.IsValid if Page.IsValid = " & Page.IsValid & "
PageError = " & pageError)
If not Page.IsValid then
Exit Sub
End if
End Sub
</script>
<html>
<head>
<title>:: Staffing Workshop ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body id="myBody" runat="server">
<form runat="server">
<asp:TextBox ID="RequestedSt artDate" Columns="12" runat="server"/>
<!-- <asp:CompareVal idator runat="server" ID="ValidateDat e"
ControlToValida te="RequestedSt artDate"
Operator="Great erThan"
Display="Dynami c"
Type="Date" text="<br>Inval id Start Date"/>
-->
<asp:ImageButto n ImageUrl="../../buttons/submit_0.gif"
OnClick="Submit NewHire_Click" runat="server"/>
</form>
</body>
</html>
*************** *************** *************** *************** *

I should get an error here.

I have the Validator commented out but the line:

ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")

Still seems to work. I should get an error that says that there is no
such object ValidateDate (as it is commented out). If I delete the
Validator - I get the error.

If I take out the ValidateDate.Va lueToCompare line, I get an error saying
that '' is not a valid date. Why would I get that error if this Validator
is commented out? I get this error as I am entering the page.

This was why I was getting the error.

I was putting in yesterdays date (which the validator says I can't do).
So the page is showing as not valid. But since the Validator is commented
out - the error message doesn't show (which it does if I don't comment it
out).

What gives?

Thanks,

Tom


Feb 22 '07 #5
"Nathan Sokalski" <nj********@hot mail.comwrote in message
news:ea******** ******@TK2MSFTN GP05.phx.gbl...
When commenting out an ASP.NET tag, you need to use <%-- --%rather
than <!-- -->. This should solve your problem. Good Luck!
That was the problem.

But why would it be set up that way? Why doesn't MS just use the normall
HTML comments.

Thanks,

Tom
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:uf******** ******@TK2MSFTN GP04.phx.gbl...
>>I think I found the problem but not why. It has to do with the fact that
HTML comments don't seem to work with asp.net.
I have the following page:
************** *************** *************** ************
<%@ Page Language="VB" trace="true" ContentType="te xt/html"
ResponseEncodi ng="iso-8859-1" Inherits="MyFun ctions.Page" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ Import Namespace="Syst em.Data" %>
<%@ Import Namespace="Syst em.Data.SqlClie nt" %>
<%@ Import Namespace="MyFu nctions" %>
<Script runat="server">
Sub Page_Load(s as Object, e as EventArgs)
Dim item as ListItem
Dim oLabel as Label
if not IsPostBack then
ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")
end if
end sub

Sub SubmitNewHire_C lick(s as Object, e as ImageClickEvent Args)
Dim pageError as Boolean = false
trace.warn("Be fore Page.IsValid if Page.IsValid = " & Page.IsValid & "
PageError = " & pageError)
If not Page.IsValid then
Exit Sub
End if
End Sub
</script>
<html>
<head>
<title>:: Staffing Workshop ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body id="myBody" runat="server">
<form runat="server">
<asp:TextBox ID="RequestedSt artDate" Columns="12" runat="server"/>
<!-- <asp:CompareVal idator runat="server" ID="ValidateDat e"
ControlToValida te="RequestedSt artDate"
Operator="Great erThan"
Display="Dynami c"
Type="Date" text="<br>Inval id Start Date"/>
-->
<asp:ImageButt on ImageUrl="../../buttons/submit_0.gif"
OnClick="Submi tNewHire_Click" runat="server"/>
</form>
</body>
</html>
************** *************** *************** *************** **

I should get an error here.

I have the Validator commented out but the line:

ValidateDate.V alueToCompare = DateTime.Today. ToString("yyyy-MM-dd")

Still seems to work. I should get an error that says that there is no
such object ValidateDate (as it is commented out). If I delete the
Validator - I get the error.

If I take out the ValidateDate.Va lueToCompare line, I get an error saying
that '' is not a valid date. Why would I get that error if this
Validator is commented out? I get this error as I am entering the page.

This was why I was getting the error.

I was putting in yesterdays date (which the validator says I can't do).
So the page is showing as not valid. But since the Validator is
commented out - the error message doesn't show (which it does if I don't
comment it out).

What gives?

Thanks,

Tom



Feb 22 '07 #6
If the server code would remove all HTML comments, there would be no way
to put an HTML comment in the code.

tshad wrote:
"Nathan Sokalski" <nj********@hot mail.comwrote in message
news:ea******** ******@TK2MSFTN GP05.phx.gbl...
>When commenting out an ASP.NET tag, you need to use <%-- --%rather
than <!-- -->. This should solve your problem. Good Luck!

That was the problem.

But why would it be set up that way? Why doesn't MS just use the normall
HTML comments.

Thanks,

Tom
>--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:uf******* *******@TK2MSFT NGP04.phx.gbl.. .
>>I think I found the problem but not why. It has to do with the fact that
HTML comments don't seem to work with asp.net.
I have the following page:
************* *************** *************** *************
<%@ Page Language="VB" trace="true" ContentType="te xt/html"
ResponseEncod ing="iso-8859-1" Inherits="MyFun ctions.Page" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ Import Namespace="Syst em.Data" %>
<%@ Import Namespace="Syst em.Data.SqlClie nt" %>
<%@ Import Namespace="MyFu nctions" %>
<Script runat="server">
Sub Page_Load(s as Object, e as EventArgs)
Dim item as ListItem
Dim oLabel as Label
if not IsPostBack then
ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")
end if
end sub

Sub SubmitNewHire_C lick(s as Object, e as ImageClickEvent Args)
Dim pageError as Boolean = false
trace.warn("B efore Page.IsValid if Page.IsValid = " & Page.IsValid & "
PageError = " & pageError)
If not Page.IsValid then
Exit Sub
End if
End Sub
</script>
<html>
<head>
<title>:: Staffing Workshop ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body id="myBody" runat="server">
<form runat="server">
<asp:TextBo x ID="RequestedSt artDate" Columns="12" runat="server"/>
<!-- <asp:CompareVal idator runat="server" ID="ValidateDat e"
ControlToValida te="RequestedSt artDate"
Operator="Great erThan"
Display="Dynami c"
Type="Date" text="<br>Inval id Start Date"/>
-->
<asp:ImageBut ton ImageUrl="../../buttons/submit_0.gif"
OnClick="Subm itNewHire_Click " runat="server"/>
</form>
</body>
</html>
************* *************** *************** *************** ***

I should get an error here.

I have the Validator commented out but the line:

ValidateDate. ValueToCompare = DateTime.Today. ToString("yyyy-MM-dd")

Still seems to work. I should get an error that says that there is no
such object ValidateDate (as it is commented out). If I delete the
Validator - I get the error.

If I take out the ValidateDate.Va lueToCompare line, I get an error saying
that '' is not a valid date. Why would I get that error if this
Validator is commented out? I get this error as I am entering the page.

This was why I was getting the error.

I was putting in yesterdays date (which the validator says I can't do).
So the page is showing as not valid. But since the Validator is
commented out - the error message doesn't show (which it does if I don't
comment it out).

What gives?

Thanks,

Tom



--
Göran Andersson
_____
http://www.guffa.com
Feb 23 '07 #7
Those are the comments used in Classic ASP, so they kept the same ones to
make ASP.NET easier for developers to learn. Also, if you use Visual Studio
..NET there are buttons that you can use to comment or uncomment something.
These buttons will use the correct character depending on whether you are
editing the *.aspx file or the codebehind file.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:ej******** ******@TK2MSFTN GP05.phx.gbl...
"Nathan Sokalski" <nj********@hot mail.comwrote in message
news:ea******** ******@TK2MSFTN GP05.phx.gbl...
>When commenting out an ASP.NET tag, you need to use <%-- --%rather
than <!-- -->. This should solve your problem. Good Luck!

That was the problem.

But why would it be set up that way? Why doesn't MS just use the normall
HTML comments.

Thanks,

Tom
>--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"tshad" <t@home.comwrot e in message
news:uf******* *******@TK2MSFT NGP04.phx.gbl.. .
>>>I think I found the problem but not why. It has to do with the fact that
HTML comments don't seem to work with asp.net.
I have the following page:
************* *************** *************** *************
<%@ Page Language="VB" trace="true" ContentType="te xt/html"
ResponseEncod ing="iso-8859-1" Inherits="MyFun ctions.Page" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ Import Namespace="Syst em.Data" %>
<%@ Import Namespace="Syst em.Data.SqlClie nt" %>
<%@ Import Namespace="MyFu nctions" %>
<Script runat="server">
Sub Page_Load(s as Object, e as EventArgs)
Dim item as ListItem
Dim oLabel as Label
if not IsPostBack then
ValidateDate.Va lueToCompare = DateTime.Today. ToString("yyyy-MM-dd")
end if
end sub

Sub SubmitNewHire_C lick(s as Object, e as ImageClickEvent Args)
Dim pageError as Boolean = false
trace.warn("B efore Page.IsValid if Page.IsValid = " & Page.IsValid & "
PageError = " & pageError)
If not Page.IsValid then
Exit Sub
End if
End Sub
</script>
<html>
<head>
<title>:: Staffing Workshop ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body id="myBody" runat="server">
<form runat="server">
<asp:TextBo x ID="RequestedSt artDate" Columns="12" runat="server"/>
<!-- <asp:CompareVal idator runat="server" ID="ValidateDat e"
ControlToValida te="RequestedSt artDate"
Operator="Great erThan"
Display="Dynami c"
Type="Date" text="<br>Inval id Start Date"/>
-->
<asp:ImageBut ton ImageUrl="../../buttons/submit_0.gif"
OnClick="Subm itNewHire_Click " runat="server"/>
</form>
</body>
</html>
************* *************** *************** *************** ***

I should get an error here.

I have the Validator commented out but the line:

ValidateDate. ValueToCompare = DateTime.Today. ToString("yyyy-MM-dd")

Still seems to work. I should get an error that says that there is no
such object ValidateDate (as it is commented out). If I delete the
Validator - I get the error.

If I take out the ValidateDate.Va lueToCompare line, I get an error
saying that '' is not a valid date. Why would I get that error if this
Validator is commented out? I get this error as I am entering the page.

This was why I was getting the error.

I was putting in yesterdays date (which the validator says I can't do).
So the page is showing as not valid. But since the Validator is
commented out - the error message doesn't show (which it does if I don't
comment it out).

What gives?

Thanks,

Tom




Feb 23 '07 #8

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

Similar topics

2
2093
by: Matt Traxinger | last post by:
This is probably some really basic operation, but how do I view the source of a web page using a php script. For example I want to have a variable, say $url = "www.google.com"; Then I want to echo its source code, so that I have a page showing: <html>
3
1902
by: David Graham | last post by:
hi Yesterday I posted the question below hoping someone could solve the basic problem at alt.html. Anyway, only one person replied and he thinks I'm best off just having a text only version for IE5, perhaps that is what I will do, but it would be nice if someone here could solve the problem so that it works in all browsers. So, can I ask the good people of this group to apply their skills to the problem outlined below:
32
3029
by: Howard Kaikow | last post by:
I often come upon web pages that do not allow themselves to be saved as a ..html file (complete), but do allow themselves to be saved as .mht files. In some cases, I find that there is no way to save the web page other than by, say, saving as a PDF file. What causes this to occur? What needs to be done when authoring to avoid such a problem? -- http://www.standards.com/; See Howard Kaikow's web site.
17
42405
by: piraticman | last post by:
Hi. I have some code for a javascript jump menu... It validated with HTML 4.0 but now does not validate with XHTML strict 1.0. I have used name atributes in my code which aparantly are not allowed now. I have spent all day trying to figure out a solution with no luck. I have tried document.forms and various other things but havent known exactly what to do with them and couldn't get them to work. Below I will show you my current code and...
1
358
by: Mark Olbert | last post by:
I've written a custom control that relies heavily on LinkButton controls. LinkButton controls don't behave properly under Netscape, but there's a simple patch/fix that involves registering some javascript code onto any page that uses LinkButtons. I'd like to design the custom control itself to register that javascript code, but the only way I know how to register javascript code require a valid Page reference...and I can't seem to...
8
1960
by: Anthony Williams | last post by:
Morning all, I'm having a wee problem with a project I'm working on at the moment. I'm leading my company into producing a website, based upon Web Standards, which will be created using XHTML and CSS, and powered by ASP.NET. My first problem, which I'm near to solving, was that ASP.NET doesn't produce valid XHTML output. We don't want to spend money on third-party components, and we can't wait for ASP.NET 2.0, so we needed to find a
5
1732
by: John Bonds | last post by:
I'm having a dumb problem I put a few TextBoxes on a page and a few RequiredFieldValidators and a button. For some reason when I click the button, my browser still makes a round trip (postback) to the server and comes back with the proper validation error messages. I want the validation to be CLIENT-SIDE. I'm sure I'm doing something lame. Here's the page <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML>
2
1209
by: Carl Gilbert | last post by:
Hi I am developing a site that has 5 or 6 thumbnail pages each with 28 image on each. Each thumb nail has a matching larger image. So 5/6 groups of 28. When the user clicks on one of the images, I want to load up another page showing the selected full size image. I then want to provide the ability to move back and forward through the collection of images.
5
12314
by: Neil Rossi | last post by:
I have an issue with a particular ASP page on two web servers. Let's call these servers Dev1 and Beta1. Both Servers are running IIS 5, Windows 2000 SP4 with "almost" all of the latest patches. On Beta1, I am able to execute a particular page with no problem, that page opens up in the comes up just fine. On Win2kdev1, when I go to execute the same page, it opens a file download dialog and asks me whether I want to open or save the...
0
9715
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
9595
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
10353
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...
0
10099
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
9176
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...
0
5536
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
4314
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
2
3836
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3003
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.