473,803 Members | 4,458 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

could you help in creating checkboxes with condition.

58 New Member
Hi all,

I created two forms. In the first frame i had Items with checkbox like names of students etc. When ever i checked on any name It's display on the other frame. Up to know it's fine. But when i deselcted any check box it again display same name.
My requirement is when i deselected the checkbox that particular student name is deleted from the list .
Any one please give suggestion for above problem.
your help will be appricited.
TankQ.

-Raju
Nov 7 '06
17 1902
rajbala
58 New Member
hi,

i did the code in .net frame work so the code behind language is vb the script
is the javascript ok

the below code may solve ur problem

Expand|Select|Wrap|Line Numbers
  1.  
  2. Parent frame:
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  <html>
  9. <head>
  10. <script language="JavaScript" type="text/javascript">
  11. var index=0;
  12. function passText(str,str1) 
  13. {
  14. if(str1==true)
  15. {
  16. if(top.frames['right'].document.yourform.text.value=="")
  17. top.frames['right'].document.yourform.text.value=str;
  18. else
  19. top.frames['right'].document.yourform.text.value=top.frames['right'].document.yourform.text.value+"\n"+str;
  20. }
  21. }
  22. function selectText()
  23. {
  24. str=top.frames['right'].document.yourform.text.value;
  25.   if(top.frames['left'].document.myform.name1.checked==false)
  26.  {
  27.  if(str.indexOf(top.frames['left'].document.myform.name1.value)!=-1)
  28.  top.frames['left'].document.myform.name1.checked=true;
  29.  }
  30. if(top.frames['left'].document.myform.name2.checked==false)
  31.  {
  32.  if(str.indexOf(top.frames['left'].document.myform.name2.value)!=-1)
  33.  top.frames['left'].document.myform.name2.checked=true;
  34.  }
  35. if(top.frames['left'].document.myform.name3.checked==false)
  36.  {
  37.  if(str.indexOf(top.frames['left'].document.myform.name3.value)!=-1)
  38.  top.frames['left'].document.myform.name3.checked=true;
  39.  }
  40.  
  41. }
  42.  
  43. // End -->
  44. </script>
  45. </head>
  46. <frameset cols="300,*" frameborder=1>
  47. <frame name="left" src="Default2.aspx">
  48. <frame name="right" src="Default3.aspx">
  49. </frameset> 
  50. </html>
  51.  
  52.  
  53. left frame
  54.  
  55.  
  56.  <html>
  57. <body>
  58. <center>
  59. <form name=myform>
  60. Enter Your Name:<br>
  61. <%--<input type=text name=user size=10 value="">
  62. <input type=button value="Ok!" onClick="parent.passText(this.form.user.value);">--%>
  63. <input type="checkbox" name="name1" value="name1" onclick="parent.passText(this.form.name1.value,document.myform.name1.checked);" />Name1
  64. <input type="checkbox" name="name2" value="name2" onclick="parent.passText(this.form.name2.value,document.myform.name2.checked);"/>Name2
  65. <input type="checkbox" name="name3" value="name3" onclick="parent.passText(this.form.name3.value,document.myform.name3.checked);"/>Name3     
  66.  
  67. </form>
  68. </center>
  69. </body>
  70. </html>
  71.  
  72. [right frame]
  73.  
  74.  
  75.  <html>
  76. <body>
  77. <form name="yourform">
  78. <textarea name="text" rows="5" cols="10"
  79.  onclick="parent.selectText();"></textarea>
  80. </form>
  81. </body>
  82. </html>
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  












[/quote]





Hi,
Thanks for this.I got this correctly but i need some more in this.
i.e if i checked the checkbox the string is added to textarea.Simila rly if remove the checking then string must deleted from textarea.Rely me as soon as Possible.
Nov 9 '06 #11
vee10
141 New Member
hi,

the before one not this one which i have posted is giving that fuctionality

only

is that both functionalities are to be added then can u once explain me what u want














Hi,
Thanks for this.I got this correctly but i need some more in this.
i.e if i checked the checkbox the string is added to textarea.Simila rly if remove the checking then string must deleted from textarea.Rely me as soon as Possible.[/quote]
Nov 9 '06 #12
rajbala
58 New Member
hi,
At first A big thank's for you.
vb is not working in my system. That one also not clear.

ok i explain once again.

When i make checked on check box the particular name will be dispalyed and when deselect the check box that particular name must be deleted from the text area not from database in mean from the list of text area present in your code. And more over i want again select names from selected names(i.e as per your code when i click on text area names are again select and placed in another frame or anything.)

By second code is out put is when click on names it is displaying but when i deselect the check box it doen't removing the name if in case i again check it displaying names. as per your code number of copy of names are displaying and when we deselect it doen't delete and moreover it doesn't provide to again select from text area.
TankQ

-Raju

hi,

the before one not this one which i have posted is giving that fuctionality

only

is that both functionalities are to be added then can u once explain me what u want
















Hi,
Thanks for this.I got this correctly but i need some more in this.
i.e if i checked the checkbox the string is added to textarea.Simila rly if remove the checking then string must deleted from textarea.Rely me as soon as Possible.
[/quote]
Nov 9 '06 #13
vee10
141 New Member
hi,

I rectified that problem i have not checked it ok just in this code see whether after deselecting and again selecting whether copies of names are generated and can u tell me whether after deselecting the checkbox whether that name should be deleted and what do u mean by

"i want again select names from selected names"

i am not clear about this i feel sorry that i am asking u to explain this many times then i can change code accordingly
don't think about this vb
just paste it and run it that's all

Expand|Select|Wrap|Line Numbers
  1. parent
  2.  
  3.  <html>
  4. <head>
  5. <script language="JavaScript" type="text/javascript">
  6. var index=0;
  7. function passText(str,str1) 
  8. {
  9. if(str1==true)
  10. {
  11. if(top.frames['right'].document.yourform.text.value=="")
  12. top.frames['right'].document.yourform.text.value=str;
  13. else
  14. {
  15.  
  16. var str1=top.frames['right'].document.yourform.text.value;
  17.  if(str1.indexOf(str)==-1)
  18. top.frames['right'].document.yourform.text.value=top.frames['right'].document.yourform.text.value+"\n"+str;
  19. }
  20.  
  21. }
  22.  
  23. }
  24. function selectText()
  25. {
  26. str=top.frames['right'].document.yourform.text.value;
  27.   if(top.frames['left'].document.myform.name1.checked==false)
  28.  {
  29.  if(str.indexOf(top.frames['left'].document.myform.name1.value)!=-1)
  30.  top.frames['left'].document.myform.name1.checked=true;
  31.  }
  32. if(top.frames['left'].document.myform.name2.checked==false)
  33.  {
  34.  if(str.indexOf(top.frames['left'].document.myform.name2.value)!=-1)
  35.  top.frames['left'].document.myform.name2.checked=true;
  36.  }
  37. if(top.frames['left'].document.myform.name3.checked==false)
  38.  {
  39.  if(str.indexOf(top.frames['left'].document.myform.name3.value)!=-1)
  40.  top.frames['left'].document.myform.name3.checked=true;
  41.  }
  42.  
  43. }
  44.  
  45. </script>
  46. </head>
  47. <frameset cols="300,*" frameborder=1>
  48. <frame name="left" src="Default2.aspx">
  49. <frame name="right" src="Default3.aspx">
  50. </frameset> 
  51. </html>
  52.  
  53. [child frame]
  54.  
  55.  <html>
  56. <body>
  57. <center>
  58. <form name=myform>
  59. Enter Your Name:<br>
  60. <%--<input type=text name=user size=10 value="">
  61. <input type=button value="Ok!" onClick="parent.passText(this.form.user.value);">--%>
  62. <input type="checkbox" name="name1" value="name1" onclick="parent.passText(this.form.name1.value,document.myform.name1.checked);" />Name1
  63. <input type="checkbox" name="name2" value="name2" onclick="parent.passText(this.form.name2.value,document.myform.name2.checked);"/>Name2
  64. <input type="checkbox" name="name3" value="name3" onclick="parent.passText(this.form.name3.value,document.myform.name3.checked);"/>Name3     
  65.  
  66. </form>
  67. </center>
  68. </body>
  69. </html>
  70. [right]
  71.  
  72.  
  73.  
  74.  <html>
  75. <body>
  76. <form name="yourform">
  77. <textarea name="text" rows="5" cols="10" onclick="parent.selectText();"></textarea>
  78.  
  79. </form>
  80. </body>
  81. </html>
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  




















hi,
At first A big thank's for you.
vb is not working in my system. That one also not clear.

ok i explain once again.

When i make checked on check box the particular name will be dispalyed and when deselect the check box that particular name must be deleted from the text area not from database in mean from the list of text area present in your code. And more over i want again select names from selected names(i.e as per your code when i click on text area names are again select and placed in another frame or anything.)

By second code is out put is when click on names it is displaying but when i deselect the check box it doen't removing the name if in case i again check it displaying names. as per your code number of copy of names are displaying and when we deselect it doen't delete and moreover it doesn't provide to again select from text area.
TankQ

-Raju
[/quote]
Nov 10 '06 #14
rajbala
58 New Member
hi,
tahkyou for reply.

The you given is not deleted the element or check box when we deselected the checkbox.

I explain you with a example. \
Step 1:If i had the follwing words

-A
-B
-C
-D
-E
-F
-G........

step 2: I select A,B,C,D from above list by making a ckeck on them.
step 3: Ok Again i want to select B,C from list A,B,C,D (i.e from step 2).

they are selected from different frames.

-Raju
Nov 10 '06 #15
rajbala
58 New Member
hi,
tahkyou for reply.

The you given is not deleted the element or check box when we deselected the checkbox.

I explain you with a example. \
Step 1:If i had the follwing words

-A
-B
-C
-D
-E
-F
-G........

step 2: I select A,B,C,D from above list by making a ckeck on them.
step 3: Ok Again i want to select B,C from list A,B,C,D (i.e from step 2).

they are selected from different frames.

-Raju



Hi ,
I think u gone through my example.Do u find any answer for that.Actually,
what is my problem is there are some elements with checkboxes-1 in frame1.if we checked the checkbox then that element must be displayed in another frame2 with name and checkbox2.Again if we select checkbox2 then that element must be displayed in another frame3.In frame3 there is no need of checkbox.In this again if deselect any checkbox the corresponding element to that checkbox must be deleted.
please urgent.If enybody found solution then help me.
Iam waiting for reply.
Nov 13 '06 #16
vee10
141 New Member
hi,
i think this is the solution

Expand|Select|Wrap|Line Numbers
  1. parent frame
  2.  <html>
  3. <head>
  4. <script language="JavaScript" type="text/javascript">
  5. var index=0;
  6. function passText1(str)
  7. {
  8.  
  9. if(top.frames['left'].document.myform.name1.checked && top.frames['middle'].document.form1.text.value=="" )
  10. {
  11. top.frames['middle'].document.form1.check.checked=false;
  12. top.frames['middle'].document.form1.text.value=str;
  13. }
  14. if(top.frames['left'].document.myform.name2.checked && top.frames['middle'].document.form1.text1.value=="" )
  15. {
  16. top.frames['middle'].document.form1.check1.checked=false;
  17. top.frames['middle'].document.form1.text1.value=str;
  18.  
  19. }
  20. if(top.frames['left'].document.myform.name3.checked && top.frames['middle'].document.form1.text2.value=="")
  21. {
  22. top.frames['middle'].document.form1.check2.checked=false;
  23. top.frames['middle'].document.form1.text2.value=str;
  24.  
  25. }
  26. else selectText("left");
  27.  
  28. }
  29.  
  30.  
  31.  
  32. function passText(str,str1) 
  33. {
  34. if(str1==true)
  35. {
  36. if(top.frames['right'].document.yourform.text.value=="")
  37. top.frames['right'].document.yourform.text.value=str;
  38. else
  39. {
  40. var str1=top.frames['right'].document.yourform.text.value;
  41. if(str1.indexOf(str)==-1)
  42. top.frames['right'].document.yourform.text.value=top.frames['right'].document.yourform.text.value+"\n"+str;
  43. }
  44. }
  45. else selectText("middle");
  46. }
  47. function selectText(str)
  48. {
  49. if(str=="left")
  50. {
  51. if(top.frames['left'].document.myform.name1.checked==false && top.frames['middle'].document.form1.text.value!="" )
  52. {
  53.  
  54. if(top.frames['middle'].document.form1.check.checked==true)
  55. top.frames['middle'].document.form1.check.checked=false;
  56. var str1=top.frames['right'].document.yourform.text.value;
  57. var str2=top.frames['left'].document.myform.name1.value;
  58. select(str1,str2);
  59. top.frames['middle'].document.form1.text.value="";
  60.  
  61. }
  62. if(top.frames['left'].document.myform.name2.checked==false && top.frames['middle'].document.form1.text2.value!="" )
  63. {
  64. if(top.frames['middle'].document.form1.check1.checked==true)
  65. top.frames['middle'].document.form1.check1.checked=false;
  66.  var str1=top.frames['right'].document.yourform.text.value;
  67. var str2=top.frames['left'].document.myform.name2.value;
  68. select(str1,str2);
  69. top.frames['middle'].document.form1.text1.value="";
  70.  
  71. }
  72.  
  73. if(top.frames['left'].document.myform.name3.checked==false && top.frames['middle'].document.form1.text2.value!="" )
  74. {
  75.  
  76. var str1=top.frames['right'].document.yourform.text.value;
  77. var str2=top.frames['left'].document.myform.name3.value;
  78. select(str1,str2);
  79. if(top.frames['middle'].document.form1.check2.checked==true)
  80. top.frames['middle'].document.form1.check2.checked=false;
  81. top.frames['middle'].document.form1.text2.value="";
  82. }
  83. }
  84. else if(str=="middle")
  85. {
  86. if(!top.frames['middle'].document.form1.check.checked)
  87. {
  88. select(top.frames['right'].document.yourform.text.value,top.frames['middle'].document.form1.text.value);
  89. }
  90. if(!top.frames['middle'].document.form1.check1.checked)
  91. {
  92. select(top.frames['right'].document.yourform.text.value,top.frames['middle'].document.form1.text1.value);
  93. }
  94.  
  95. if(!top.frames['middle'].document.form1.check2.checked)
  96. {
  97. select(top.frames['right'].document.yourform.text.value,top.frames['middle'].document.form1.text2.value);
  98. }
  99.  
  100. }
  101. }
  102. function select(str1,str2)
  103. {
  104. if(str1.indexOf(str2)!=-1)
  105. index=str1.indexOf(str2);
  106. if(str1.length==str2.length)
  107. top.frames['right'].document.yourform.text.value="";
  108. else
  109. {
  110. index=0;index1=0,count=0,flag=0;
  111. index=str1.indexOf(str2);
  112. var temp="";
  113. while(index1<str1.length)
  114. {
  115. if(index1==index)
  116. {
  117. flag=1;
  118. if(index!=0)
  119. {
  120. temp=str1.substring(0,count);
  121. count=0;
  122. }
  123. }
  124. else
  125. {
  126.  
  127. ++count;
  128.  
  129. if(count==str2.length&& index1<str1.length&&flag==1)
  130. {
  131. temp=temp+str1.substring(index1+2,str1.length);
  132. break;
  133. }
  134. }
  135. index1++;
  136. }
  137. top.frames['right'].document.yourform.text.value=temp;
  138. }
  139. }
  140. }
  141.  
  142. </script>
  143. </head>
  144. <frameset cols="30%,30%,*" frameborder=1>
  145. <frame name="left" src="Default2.aspx">
  146. <frame name="middle" src="Default4.aspx">
  147.  
  148. <frame name="right" src="Default3.aspx">
  149. </frameset> 
  150. </html>
  151.  
  152. left frame
  153.  
  154.  <html>
  155. <body>
  156. <center>
  157. <form name=myform>
  158. Enter Your Name:<br>
  159. <%--<input type=text name=user size=10 value="">
  160. <input type=button value="Ok!" onClick="parent.passText(this.form.user.value);">--%>
  161. <input type="checkbox" name="name1" value="name1" onclick="parent.passText1(this.form.name1.value);" />Name1
  162. <input type="checkbox" name="name2" value="name2" onclick="parent.passText1(this.form.name2.value);"/>Name2
  163. <input type="checkbox" name="name3" value="name3" onclick="parent.passText1(this.form.name3.value);"/>Name3     
  164.  
  165. </form>
  166. </center>
  167. </body>
  168. </html>
  169.  
  170. middle frame
  171.  
  172. <html >
  173.  
  174. <body>
  175.     <form name="form1">
  176.     <div>
  177.     <input name="text" type="text" />
  178.     <input name="check" type="checkbox" onclick="parent.passText(this.form.text.value,document.form1.check.checked);" />
  179.      <input name="text1" type="text" style="z-index: 100; left: 16px; position: absolute; top: 56px" />
  180.     <input name="check1" type="checkbox" style="z-index: 101; left: 184px; position: absolute; top: 56px" onclick="parent.passText(this.form.text1.value,document.form1.check1.checked);" />
  181.      <input name="text2" type="text" style="z-index: 102; left: 16px; position: absolute; top: 96px" />
  182.     <input name="check2" type="checkbox" style="z-index: 103; left: 192px; position: absolute; top: 96px" onclick="parent.passText(this.form.text2.value,document.form1.check2.checked);" />
  183.     </div>
  184.     </form>
  185. </body>
  186. </html>
  187.  
  188. right frame
  189.  
  190.  
  191.  
  192.  
  193.  <html xmlns="http://www.w3.org/1999/xhtml">
  194.  <body>
  195. <form name="yourform">
  196. <textarea name="text" rows="5" cols="10" ></textarea>
  197. </form>
  198. </body>
  199. </html>
  200.  













































Hi ,
I think u gone through my example.Do u find any answer for that.Actually,
what is my problem is there are some elements with checkboxes-1 in frame1.if we checked the checkbox then that element must be displayed in another frame2 with name and checkbox2.Again if we select checkbox2 then that element must be displayed in another frame3.In frame3 there is no need of checkbox.In this again if deselect any checkbox the corresponding element to that checkbox must be deleted.
please urgent.If enybody found solution then help me.
Iam waiting for reply.
Nov 13 '06 #17
rajbala
58 New Member
Hi,
Yes!!!!!!! yes...... that only my requirement. Really i dont have have words to say thank's for your help. You solve my big problem.
A big thank's from raju..

thankyou.
-raju
Nov 13 '06 #18

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

Similar topics

4
11827
by: James Greig | last post by:
hello people, i'm just learning javascript, could someone point me in the direction of an example of the following, or give me some clues as to how it might be done: what i would like to do is make a self totalling version of this page > http://www.ayrshirehousing.org.uk/applications/applications.html so that basically as a person checked or unchecked boxes, a
4
2901
by: BjoernJackschina | last post by:
HEllo, I still have always the same problem with a no object form in my source code. It is for checking out used radiobuttons or checkboxes.<script <!-- function pruefen(){return true} --> </script> <script language="JAvaScript1.1"><!--
4
1745
by: NaterPotater | last post by:
I can't seem to get my head around the Visual Studio's Deployment Projects: I want the user, at install-time, to be able to specify if they want a icon placed on the desktop or not (I'm trying to use Checkboxes(A)). Seemingly you can just place the Checkbox1Property Name into the User's Desktop Condition but that does not work. I actually saw an article that highlighted this process as "the way to do it", so I downloaded the source and...
5
2202
by: Dave D. | last post by:
I have a total of 8 checkboxes, but the user is only allowed to check any three of them. After have been checked I have an alert box saying that only 3 boxes can be checked. I'm trying to get so that it disable's the checkboxes that are not checked, but then if one of the three get unchecked, then all checkboxes become enabled again. Here's my code so far....(In Javascript) function chkCount() { var i = 0;
1
1683
by: Richard Johansson | last post by:
Hi, I want to create an option for creating shortcuts to my application on the users desktop and Start menu in the setup. In my deployment project i have created the necessary checkboxes, and tried to set Conditions on the folders "User's desktop" and "User's Program Menu", but the conditions doesnt seem to affect shortcuts, only physical files... Have anyone else run into these kinds of problems, or am i just missing something obvious...
6
1472
by: rajbala.3399 | last post by:
Hi, I created two forms. In the first frame i had Items with checkbox like names of students etc. When ever i checked on any name It's display on the other frame. Up to know it's fine. But when i deselcted any check box it again display same name. My requirement is when i deselected the checkbox that particular student name is deleted from the list . Any one please give suggestion for above problem. your help will be appricited. TankQ.
10
5212
by: rn5a | last post by:
All the rows in a DataGrid, including the Header, are accompanied with a CheckBox. I want that when the CheckBox in the Header is checked, then all the CheckBoxes should automatically get checked. I set the AutoPostBack property of the CheckBox in the Header to True & am invoking a sub named 'CheckAllRows' on the CheckedChanged event of this CheckBox. The CheckBox in the Header exists within the HeaderTemplate of a TemplateColumn in the...
6
1944
blazedaces
by: blazedaces | last post by:
Hey, so here's an example of what I want to do: This "window" if you will, or simple gui, will accept an ArrayList<String> and in turn spit out for every one of them a checkbox and a text field where you can rename it to whatever name you chose (later I'll add something to check and make sure none of the names are the same... but for now it doesn't matter). I'm not very familiar with GUI in java so I don't know the best way of doing this. ...
14
2116
by: tdahsu | last post by:
I have twenty-five checkboxes I need to create (don't ask): self.checkbox1 = ... self.checkbox2 = ... .. .. .. self.checkbox25 = ... Right now, my code has 25 lines in it, one for each checkbox, since
1
1501
by: harry_noble1902 | last post by:
Hello I have a "solution" that has 7 VB.Net projects in it. Some of the VB.Net projects are dll librarys but 3 are applications (so there are 7-3=4 dlls) I want to install with a setup program/application. I have created a Setup application as part of my "solution" using the wizard. One of the windows in my Setup application has a check box that says "Install Application 1". Another checkbox says "Install Application 2". The last one...
0
9703
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
9564
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
10548
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
9125
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
7604
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
6842
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5500
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
5629
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3798
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.