473,699 Members | 2,801 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help needed to get information across forms with javascript

15 New Member
ok here is the problem, i have to forms which have values i wish to be added together i can add together the values in one form all right but im having problems with adding the values of the other form to it... ill post the code for you to look at and try to explaine in detail what im trying to do.

here is the code (HTML and Javascript so you get the whole picture):

javascript:
Expand|Select|Wrap|Line Numbers
  1. var gen, lights;
  2.  
  3. var lammount;
  4.  
  5.  
  6.  
  7. function validatetheform()
  8.     {
  9.         if (!document.frmTorder.txtBname.value)
  10.             {
  11.                 alert("Please enter your buisness name.");
  12.                 document.frmTorder.txtBname.focus();
  13.             }
  14.  
  15.         else if(!document.frmTorder.txtBaddy.value)
  16.             {
  17.                 alert("Please enter you Buisness address.");
  18.                 document.frmTorder.txtBaddy.focus();
  19.             }
  20.  
  21.         else if(!document.frmTorder.txtPcode.value)
  22.             {
  23.                 alert("Plese enter your postcode");
  24.                 document.frmTorder.txtPcode.focus();
  25.             }
  26.  
  27.         else if(!document.frmTorder.txtState.value)
  28.             {
  29.                 alert("Please enter you state.");
  30.                 document.frmTorder.txtState.focus();
  31.             }
  32.  
  33.         else if(!document.frmTorder.txtSite.value)
  34.             {
  35.                 alert("Please enter the event address.");
  36.                 document.frmTorder.txtSite.focus();
  37.             }
  38.  
  39.         return true;
  40.     }
  41.  
  42.  
  43. function total_add()
  44.     {
  45.  
  46.         var bubbleday, simday, slideday, bungiesday;
  47.         var bubble, sim, slide, bungies;
  48.         var bubblet, simt, slidet, bungiest;
  49.  
  50.         var total;
  51.  
  52.         // Setting the value for the days
  53.         bubbleday = document.frmTorder.txtBubbledays.value;
  54.         simday = document.frmTorder.txtSimdays.value;
  55.         slideday = document.frmTorder.txtSlidedays.value;
  56.         bungiesday = document.frmTorder.txtBungiedays.value;
  57.  
  58.         // setting the value for the set price
  59.         bubble = document.frmTorder.txtBubbleprice.value;
  60.         sim = document.frmTorder.txtSimprice.value;
  61.         slide = document.frmTorder.txtSlideprice.value;
  62.         bungies = document.frmTorder.txtBungieprice.value;
  63.  
  64.         // calculating the total of the individual rides
  65.         bungiest = bungies * bungiesday;
  66.         simt = sim * simday;
  67.         slidet = slide * slideday;
  68.         bubblet = bubble * bubbleday;
  69.  
  70.         // setting the value total with the ammounts from the rides
  71.         total = bubblet + slidet + simt + bungiest;
  72.  
  73.         document.frmTorder.txtTotalprice.value = total;
  74.  
  75.     }
  76.  
  77.  
  78.  
  79. function extras()
  80.  
  81.     {
  82.         if (document.frmExtras.chkGen = selected)
  83.  
  84.             {
  85.  
  86.                 gen = document.frmExtras.txtGenprice.value;
  87.  
  88.             }
  89.  
  90.  
  91.  
  92.         alert("Gen amount is: " + gen);
  93.  
  94.     }
  95.  
and the html (form 1):

Expand|Select|Wrap|Line Numbers
  1. <form name="frmTorder" method="post" onSubmit="validatetheform()" onReset="document.frmTorder.txtBname.focus()">
  2.                 <font color="lightgreen"><strong>*</strong></font>Buisness Name: &nbsp;<input type="text" name="txtBname" size="20"><br />
  3.                 <font color="lightgreen"><strong>*</strong></font>Address: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="txtBaddy" size="50"><br />
  4.                 <font color="lightgreen"><strong>*</strong></font>Post Code: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="txtPcode" size="4"> <font color="lightgreen"><strong>*</strong></font>State: <input type="text" name="txtState" size="4"><br />
  5.  
  6.                 <br /><hr /><br />
  7.  
  8.                 <font color="lightgreen"><strong>*</strong></font>Address of event: &nbsp;&nbsp;<input type="text" name="txtSite" size="50"><br />
  9.  
  10.                 <font color="lightgreen"><strong>*</strong></font>Start date: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="txtSdate" class="calendarSelectDate" size="10"/> <font color="lightgreen"><strong>*</strong></font>End date of event: <input type="text" name="txtEdate" size="10" class="calendarSelectDate"><br />
  11.                 Street Referance: &nbsp;&nbsp;&nbsp;<input type="text" name="txtSref" size="50"><br />
  12.  
  13.                 <br /><hr /><br />
  14.  
  15.                 <center><table name="tblRides" border="0">
  16.                     <tr>
  17.                         <td>Rides</td>
  18.  
  19.                         <td><font color="lightgreen"><strong>*</strong></font>Required Days</td>
  20.  
  21.                         <td><center>Price</center></td>
  22.  
  23.                     </tr>
  24.  
  25.                     <tr>
  26.  
  27.                         <td>Trampoline Bungies</td>
  28.  
  29.                         <td><center><input type="text" name="txtBungiedays" size="2" onchange="total_add()"></center></td>
  30.  
  31.                         <td class="price"><center><input type="text" name="txtBungieprice" size="7" value="2000.00" disabled></center></td>
  32.  
  33.                     </tr>
  34.  
  35.                     <tr>
  36.  
  37.                         <td>Tarzan Jumping Castel</td>
  38.  
  39.                         <td><center><input type="text" name="txtBubbledays" size="2" onChange="total_add()"></center></td>
  40.  
  41.                         <td class="price"><center><input type="text" name="txtBubbleprice" size="7" value="1200.00" disabled></center></td>
  42.  
  43.                     </tr>
  44.  
  45.                     <tr>
  46.  
  47.                         <td>Voyager Simulator</td>
  48.  
  49.                         <td><center><input type="text" name="txtSimdays" size="2" onChange="total_add()"></center></td>
  50.  
  51.                         <td class="price"><center><input type="text" name="txtSimprice" size="7" value="1850.00" disabled></center></td>
  52.  
  53.                     </tr>
  54.  
  55.                     <tr>
  56.  
  57.                         <td>Giant Slide</td>
  58.  
  59.                         <td><center><input type="text" name="txtSlidedays" size="2" onChange="total_add()"></center></td>
  60.  
  61.                         <td class="price"><center><input type="text" name="txtSlideprice" size="7" value="1850.00" disabled></center></td>
  62.  
  63.                     </tr>
  64.  
  65.                     <tr>
  66.  
  67.                         <td>Food Van</td>
  68.  
  69.                         <td><center><input type="text" name="txtFvandays" size="2" onChange="total_add()"></center></td>
  70.  
  71.                         <td class="price"><center><input type="text" name="txtFvanprice" size="7" value="0.00" disabled></center></td>
  72.  
  73.                     </tr>
  74.  
  75.                     <tr>
  76.  
  77.                         <td></td>
  78.  
  79.                         <td>Total Amount Owing: $</td>
  80.  
  81.                         <td class="price"><input type="text" name="txtTotalprice" size="7" disabled></td>
  82.  
  83.                     </tr>
  84.                 </table></center><br />
  85.  
  86.                 <center>Extra Details/Questions: <br /><textarea name="txtComments" rows="8" cols="40">Place any extra details or questions here.</textarea></center><br /><br />
  87.  
  88.                 <center><input type="submit" name="btnSubmit" value="Make Booking"> <input type="reset" name="btnReset" value="Reset the order"></center>
  89.             </form>
  90.  
(form 2):
Expand|Select|Wrap|Line Numbers
  1. <form name="frmExtras" method="post">
  2.                     <li><input type="checkbox" name="chkGen"> Generator (Simulator Only).<input type="hidden" name=txtGenprice" value="1000" onchange="extras()"></li>
  3.                     <li><input type="checkbox" name="chkLights"> Lights. <br /><input type="text" name="txtLammount" value="0" size="2" onchange=""> Ammount needed.<input type="hidden" name=txtLprice" value="1000"></li>
  4.                 </form>
  5.  
Now what i need is to be able to get the values of 'frmExtras' into the box 'txtTotalprice' if the check box for chkGen is selected or an ammount from 'txtLammount' if it has a value in it.. ive been trying to nut it out and my own knowledge is just too limited i need help with it... any advice of how to go about it would be great.

DD
Mar 18 '08 #1
13 1844
gits
5,390 Recognized Expert Moderator Expert
changed thread title ... please be sure to use a proper thread title for your post ... read this section of the posting guidelines ...

kind regards
MOD
Mar 18 '08 #2
DDragon
15 New Member
ok here is the problem, i have to forms which have values i wish to be added together i can add together the values in one form all right but im having problems with adding the values of the other form to it... ill post the code for you to look at and try to explaine in detail what im trying to do.

here is the code (HTML and Javascript so you get the whole picture):

javascript:
Expand|Select|Wrap|Line Numbers
  1. var gen, lights;
  2.  
  3. var lammount;
  4.  
  5.  
  6.  
  7. function validatetheform()
  8.     {
  9.         if (!document.frmTorder.txtBname.value)
  10.             {
  11.                 alert("Please enter your buisness name.");
  12.                 document.frmTorder.txtBname.focus();
  13.             }
  14.  
  15.         else if(!document.frmTorder.txtBaddy.value)
  16.             {
  17.                 alert("Please enter you Buisness address.");
  18.                 document.frmTorder.txtBaddy.focus();
  19.             }
  20.  
  21.         else if(!document.frmTorder.txtPcode.value)
  22.             {
  23.                 alert("Plese enter your postcode");
  24.                 document.frmTorder.txtPcode.focus();
  25.             }
  26.  
  27.         else if(!document.frmTorder.txtState.value)
  28.             {
  29.                 alert("Please enter you state.");
  30.                 document.frmTorder.txtState.focus();
  31.             }
  32.  
  33.         else if(!document.frmTorder.txtSite.value)
  34.             {
  35.                 alert("Please enter the event address.");
  36.                 document.frmTorder.txtSite.focus();
  37.             }
  38.  
  39.         return true;
  40.     }
  41.  
  42.  
  43. function total_add()
  44.     {
  45.  
  46.         var bubbleday, simday, slideday, bungiesday;
  47.         var bubble, sim, slide, bungies;
  48.         var bubblet, simt, slidet, bungiest;
  49.  
  50.         var total;
  51.  
  52.         // Setting the value for the days
  53.         bubbleday = document.frmTorder.txtBubbledays.value;
  54.         simday = document.frmTorder.txtSimdays.value;
  55.         slideday = document.frmTorder.txtSlidedays.value;
  56.         bungiesday = document.frmTorder.txtBungiedays.value;
  57.  
  58.         // setting the value for the set price
  59.         bubble = document.frmTorder.txtBubbleprice.value;
  60.         sim = document.frmTorder.txtSimprice.value;
  61.         slide = document.frmTorder.txtSlideprice.value;
  62.         bungies = document.frmTorder.txtBungieprice.value;
  63.  
  64.         // calculating the total of the individual rides
  65.         bungiest = bungies * bungiesday;
  66.         simt = sim * simday;
  67.         slidet = slide * slideday;
  68.         bubblet = bubble * bubbleday;
  69.  
  70.         // setting the value total with the ammounts from the rides
  71.         total = bubblet + slidet + simt + bungiest;
  72.  
  73.         document.frmTorder.txtTotalprice.value = total;
  74.  
  75.     }
  76.  
  77.  
  78.  
  79. function extras()
  80.  
  81.     {
  82.         if (document.frmExtras.chkGen = selected)
  83.  
  84.             {
  85.  
  86.                 gen = document.frmExtras.txtGenprice.value;
  87.  
  88.             }
  89.  
  90.  
  91.  
  92.         alert("Gen amount is: " + gen);
  93.  
  94.     }
  95.  
and the html (form 1):

[html]
<form name="frmTorder " method="post" onSubmit="valid atetheform()" onReset="docume nt.frmTorder.tx tBname.focus()" >
<font color="lightgre en"><strong>* </strong></font>Buisness Name: &nbsp;<input type="text" name="txtBname" size="20"><br />
<font color="lightgre en"><strong>* </strong></font>Address: &nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;<in put type="text" name="txtBaddy" size="50"><br />
<font color="lightgre en"><strong>* </strong></font>Post Code: &nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;&nbsp;<input type="text" name="txtPcode" size="4"> <font color="lightgre en"><strong>* </strong></font>State: <input type="text" name="txtState" size="4"><br />

<br /><hr /><br />

<font color="lightgre en"><strong>* </strong></font>Address of event: &nbsp;&nbsp;<in put type="text" name="txtSite" size="50"><br />

<font color="lightgre en"><strong>* </strong></font>Start date: &nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;<in put type="text" name="txtSdate" class="calendar SelectDate" size="10"/> <font color="lightgre en"><strong>* </strong></font>End date of event: <input type="text" name="txtEdate" size="10" class="calendar SelectDate"><br />
Street Referance: &nbsp;&nbsp;&nb sp;<input type="text" name="txtSref" size="50"><br />

<br /><hr /><br />

<center><tabl e name="tblRides" border="0">
<tr>
<td>Rides</td>

<td><font color="lightgre en"><strong>* </strong></font>Required Days</td>

<td><center>Pri ce</center></td>

</tr>

<tr>

<td>Trampolin e Bungies</td>

<td><center><in put type="text" name="txtBungie days" size="2" onchange="total _add()"></center></td>

<td class="price">< center><input type="text" name="txtBungie price" size="7" value="2000.00" disabled></center></td>

</tr>

<tr>

<td>Tarzan Jumping Castel</td>

<td><center><in put type="text" name="txtBubble days" size="2" onChange="total _add()"></center></td>

<td class="price">< center><input type="text" name="txtBubble price" size="7" value="1200.00" disabled></center></td>

</tr>

<tr>

<td>Voyager Simulator</td>

<td><center><in put type="text" name="txtSimday s" size="2" onChange="total _add()"></center></td>

<td class="price">< center><input type="text" name="txtSimpri ce" size="7" value="1850.00" disabled></center></td>

</tr>

<tr>

<td>Giant Slide</td>

<td><center><in put type="text" name="txtSlided ays" size="2" onChange="total _add()"></center></td>

<td class="price">< center><input type="text" name="txtSlidep rice" size="7" value="1850.00" disabled></center></td>

</tr>

<tr>

<td>Food Van</td>

<td><center><in put type="text" name="txtFvanda ys" size="2" onChange="total _add()"></center></td>

<td class="price">< center><input type="text" name="txtFvanpr ice" size="7" value="0.00" disabled></center></td>

</tr>

<tr>

<td></td>

<td>Total Amount Owing: $</td>

<td class="price">< input type="text" name="txtTotalp rice" size="7" disabled></td>

</tr>
</table></center><br />

<center>Extra Details/Questions: <br /><textarea name="txtCommen ts" rows="8" cols="40">Place any extra details or questions here.</textarea></center><br /><br />

<center><inpu t type="submit" name="btnSubmit " value="Make Booking"> <input type="reset" name="btnReset" value="Reset the order"></center>
</form>
[/html]

(form 2):
[html]
<form name="frmExtras " method="post">
<li><input type="checkbox" name="chkGen"> Generator (Simulator Only).<input type="hidden" name=txtGenpric e" value="1000" onchange="extra s()"></li>
<li><input type="checkbox" name="chkLights "> Lights. <br /><input type="text" name="txtLammou nt" value="0" size="2" onchange=""> Ammount needed.<input type="hidden" name=txtLprice" value="1000"></li>
</form>
[/html]

Now what i need is to be able to get the values of 'frmExtras' into the box 'txtTotalprice' if the check box for 'chkGen' is selected or an ammount from 'txtLprice' if 'txtLammount' has a value in it.. ive been trying to nut it out and my own knowledge is just too limited i need help with it... any advice of how to go about it would be great.

DD
Mar 18 '08 #3
gits
5,390 Recognized Expert Moderator Expert
threads merged ... DON'T multipost the same questions!

kind regards
MOD
Mar 18 '08 #4
DDragon
15 New Member
appologies, but it would have been better to send me a pm stating you changed the topic rather than do it in the thread as i didnt know what had happend to my thread so i reposted. just a thought

DD
Mar 18 '08 #5
acoder
16,027 Recognized Expert Moderator MVP
appologies, but it would have been better to send me a pm stating you changed the topic rather than do it in the thread as i didnt know what had happend to my thread so i reposted. just a thought

DD
To find your threads, see the subscribed link or the Started link (top of the page).
Mar 18 '08 #6
acoder
16,027 Recognized Expert Moderator MVP
ok here is the problem, i have to forms which have values i wish to be added together i can add together the values in one form all right but im having problems with adding the values of the other form to it... ill post the code for you to look at and try to explaine in detail what im trying to do. Now what i need is to be able to get the values of 'frmExtras' into the box 'txtTotalprice' if the check box for 'chkGen' is selected or an ammount from 'txtLprice' if 'txtLammount' has a value in it.. ive been trying to nut it out and my own knowledge is just too limited i need help with it... any advice of how to go about it would be great.
If you want to refer to the form, use document.forms["frmExtras"].elements[elementName]. To check that chkGen is checked:
Expand|Select|Wrap|Line Numbers
  1. if (document.forms["frmExtras"].elements["chkGen"].checked) {
  2. ...
  3. }
To check that txtlAmmount has a value, just check that it isn't equal to empty (!= "").
Mar 18 '08 #7
DDragon
15 New Member
Thanks for the help acoder, and to respond to your first post i did that but still a pm would be helpful instead of just changing it and making it a post in the thread.
Mar 19 '08 #8
acoder
16,027 Recognized Expert Moderator MVP
Thanks for the help acoder, and to respond to your first post i did that but still a pm would be helpful instead of just changing it and making it a post in the thread.
True, a PM would work if everyone knew how to use them. Many simply don't know they exist.
Mar 19 '08 #9
gits
5,390 Recognized Expert Moderator Expert
Thanks for the help acoder, and to respond to your first post i did that but still a pm would be helpful instead of just changing it and making it a post in the thread.
in case you did you could have seen the change ... and since a thread title 'Help Needed' is not a title where somebody knows what you mean ... remember: nearly all threads in the programming forums are started to solve a problem and thus they are asking for help ... i changed it according to the posting guidelines ... since you only have 2 started threads i cannot imagine that you couldn't have noticed the change without a PM ... but i'll try to remember you and in case the same issue occurs i'll send you a PM regarding the change ...

kind regards
Mar 19 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

4
7789
by: Sarah | last post by:
Hi all. I have a form, and several text and image links on it that should submit the form with different actions. I prepared a simple page with just the code that's not working. PROBLEM: The form won't submit if the link is clicked, but will submit if the SUBMIT button is clicked. I need to call a function to change the form's action according to user's input before it is submitted.
8
1984
by: shandain | last post by:
Ok, I have done this a million times, and I can't get this to work... I hope I am just being an idiot and missing something... but I can't see it... so please call me an idiot and tell me what it is... <code> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <title>Online Orientation Quiz</title> <meta http-equiv="Content-Type" content="text/html;
3
4866
by: Kris van der Mast | last post by:
Hi, I've created a little site for my sports club. In the root folder there are pages that are viewable by every anonymous user but at a certain subfolder my administration pages should be protected by forms authentication. When I create forms authentication at root level it works but when I move my code up to the subfolder I get this error: Server Error in '/TestProjects/FormsAuthenticationTestingArea' Application.
8
1259
by: Lloyd Sheen | last post by:
I have a problem with persisting the state of a control. It has several properties that can be determined but there is no event to indicate when the property changes. A postback occurs when one of a array of buttons is clicked. On the click new information will be displayed but I need to save information from the control (which I cannot change) and reset it when the new information is displayed. Is there an article I can reference (I...
4
1319
by: Random | last post by:
The way I've built my page is to take the user through a multi-form process, only rendering those controls that are needed for each section. The ViewState is working the way I want it to, remembering items across the process, back and forth. But when the user finally opts to complete the sections and commit the information for processing, I can't access any of the information that was not rendered on the last section. It's obviously in...
0
5569
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted ******************************************************** For this teeny job, please refer to: http://feeds.reddit.com/feed/8fu/?o=25
9
387
by: i | last post by:
what is scripting language?We can create websites by using HTML. But we are using scripting language with HTML to create forms and websites.Advantage of using scripting language instead of HTML?
4
2442
by: dupdupdup | last post by:
Hello there, im needed to develop a gallery for this website. im using hotspots to go to my frames in my flash Each hotspot goes to each frame. The flash is loaded properly. When i right click and click play it goes to the next frame. But the Hotspots just dont work with IE. For your information: This works with other browsers like firefox, safari and Opera. MY HEADER <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"...
53
8391
by: souporpower | last post by:
Hello All I am trying to activate a link using Jquery. Here is my code; <html> <head> <script type="text/javascript" src="../../resources/js/ jquery-1.2.6.js"</script> <script language="javascript" type="text/javascript">
0
8686
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
8615
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
9173
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9033
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
8911
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
7748
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
4375
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
3057
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
2009
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.