473,796 Members | 2,688 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Use Javascript Calendar in DataGrid

I'm attempting to implement a javascript popup calendar in a DataGrid.
The calendar will be used to insert a date into a textbox. I keep
getting a "System.NullRef erenceException : Object reference not set to
an instance of an object" error, which points to the following line:

lnkCalendar.Att ributes("OnClic k") =
String.Format(" window.open('Ca lendar.aspx?tex tbox={0}','cal' ,'...')",
txtEstimatedDep loy)

Here is the complete code for the aspx page and its codebehind page:

aspx page:
<%@ Page Language="vb"
Src="BURSInsert Successful.aspx .vb"
Inherits="PSDat aGrid" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<%@ import Namespace="Syst em.Data" %>
<%@ import Namespace="Syst em.Data.SqlClie nt" %>
<%@ import Namespace="Syst em.Web.UI.WebCo ntrols" %>
<html>
<head>
<title>BURS - Insert Successful</title>
<style>
H3 {
font: 8pt arial;
font-weight: 600;
text-align: center;
}
H1 {
font: 8pt arial;
font-weight: 400;
text-align: center;
}
A {
font: 8pt arial;
font-weight: 400;
}
</style>
</head>
<body>
<h3>Corporate Information Services<br>Ins ert
Successful</h3>
<h1>A new project record has been created.<br>Cli ck
"<b><u>Edit </u></b>" in the last
column to make changes to the report.</h1>
<table>
<form id="Form1" method="post"
runat="server">
<asp:datagrid id="dgProjectSu mmary"
runat="server"
ShowHeader="Tru e"
ShowFooter="Fal se"
BorderColor="bl ack"
AutoGenerateCol umns="False"
OnEditCommand=" EditRecord"
OnUpdateCommand ="UpdateReco rd"
OnCancelCommand ="CancelEdit ">

<headerstyle BackColor="ligh tgray"
Font-Name="arial"
Font-Size="8"
Font-Bold="true"
ForeColor="blac k"
HorizontalAlign ="center"
/>

<itemstyle
Font-Name="arial"
Font-Size="8"
HorizontalAlign ="left"
VerticalAlign=" top"
/>

<columns>

<asp:templateco lumn>
<itemtemplate >
<b>Project ID:</b>
<asp:label text='<%#
Container.DataI tem("ProjectID" )%>'
font-name="arial"
font-size="8" runat="server"
ID="Label1" NAME="Label1"/>
</itemtemplate>
<edititemtempla te>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Project</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("ProjectNam e")%>'
font-name="arial"
font-size="8" width="70"
runat="server" ID="Label2"
NAME="Label2"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtProjectN ame"
text='<%#
Container.DataI tem("ProjectNam e")%>'
font-name="arial"
font-size="8" rows="10"
width="70" textmode="multi line"
wrap="true"
style="overflow :hidden"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Project Description</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("ProjectDes cription")%>'
font-name="arial"
font-size="8" width="100"
runat="server" ID="Label3"
NAME="Label3"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtProjectD escription"
text='<%#
Container.DataI tem("ProjectDes cription")%>'
font-name="arial" font-size="8"
rows="10" width="100"
textmode="multi line" wrap="true"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Phase</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("Phase")%>'
font-name="arial"
font-size="8" width="39"
runat="server" ID="Label4"
NAME="Label4"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtPhase" text='<%#
Container.DataI tem("Phase")%>'
font-name="arial"
font-size="8" rows="10"
width="39" textmode="multi line"
wrap="true"
style="overflow :hidden"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Estimated Deploy</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("EstimatedD eploy").ToShort DateString
%>' font-name="arial"
font-size="8" width="65"
runat="server" ID="Label5"
NAME="Label5"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtEstimate dDeploy"
text='<%#
Container.DataI tem("EstimatedD eploy").ToShort DateString
%>'
font-name="arial" font-size="8"
rows="1" width="65" runat="server">
</asp:textbox>
<asp:hyperlin k id="lnkCalendar "
runat="server" navigateurl="Ca lendar.aspx"
target="_blank" >Calendar</asp:hyperlink>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Recent Accomplishments </b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("RecentAcco mplishments")%> '
font-name="arial"
font-size="8" width="100"
runat="server" ID="Label6"
NAME="Label6"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox
id="txtRecentAc complishments" text='<%#
Container.DataI tem("RecentAcco mplishments")%> '
font-name="arial" font-size="8"
rows="10" width="100"
textmode="multi line" wrap="true"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Focus Items</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("FocusItems ")%>'
font-name="arial"
font-size="8" width="100"
runat="server" ID="Label7"
NAME="Label7"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtFocusIte ms"
text='<%# Container.DataI tem("FocusItems ")%>'
font-name="arial"
font-size="8" rows="10"
width="100" textmode="multi line"
wrap="true" runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Est. Benefits</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("EstBenefit s")%>'
font-name="arial"
font-size="8" width="51"
runat="server" ID="Label8"
NAME="Label8"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtEstBenef its"
text='<%#
Container.DataI tem("EstBenefit s")%>'
font-name="arial"
font-size="8" rows="10"
width="51" textmode="multi line"
wrap="true" style="overflow :hidden"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>IS Cost</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("ISCost")%> '
font-name="arial"
font-size="8" width="51"
runat="server" ID="Label9"
NAME="Label9"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtISCost" text='<%#
Container.DataI tem("ISCost")%> '
font-name="arial"
font-size="8" rows="10"
width="51" textmode="multi line"
wrap="true" style="overflow :hidden"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Corporate<br >IS Lead</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("CorporateI SLead")%>'
font-name="arial"
font-size="8" width="70"
runat="server" ID="Label10"
NAME="Label10"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtCorporat eISLead"
text='<%#
Container.DataI tem("CorporateI SLead")%>'
font-name="arial" font-size="8"
rows="10" width="70"
textmode="multi line" wrap="true"
style="overflow :hidden"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Business Lead</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("BusinessLe ad")%>'
font-name="arial"
font-size="8" width="70"
runat="server" ID="Label11"
NAME="Label11"/>
</itemtemplate>
<edititemtempla te>
<asp:textbox id="txtBusiness Lead"
text='<%#
Container.DataI tem("BusinessLe ad")%>'
font-name="arial" font-size="8"
rows="10" width="70"
textmode="multi line" wrap="true"
style="overflow :hidden"
runat="server">
</asp:textbox>
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Department </b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("Department ")%>'
font-name="arial"
font-size="8" width="100"
runat="server" ID="Label12"
NAME="Label12"/>
</itemtemplate>
<edititemtempla te>
<asp:listbox id="lbxDepartme nt"
font-name="arial" font-size="8"
width="100" rows="1"
DataTextField=" DepartmentName"
DataValueField= "DepartmentName " DataSource="<%#
GetDepartmentNa mes() %>"
runat="server" />
</edititemtemplat e>
</asp:templatecol umn>

<asp:templateco lumn>
<headertemplate >
<b>Status</b>
</headertemplate>
<itemtemplate >
<asp:label text='<%#
Container.DataI tem("Status")%> '
font-name="arial"
font-size="8" width="58"
runat="server" ID="Label13"
NAME="Label13"/>
</itemtemplate>
<edititemtempla te>
<asp:listbox id="lbxStatus"
font-name="arial" font-size="8"
width="58" rows="1"
DataTextField=" Status"
DataValueField= "Status" DataSource="<%#
GetStatus() %>"
runat="server" />
</edititemtemplat e>
</asp:templatecol umn>

<asp:editcomman dcolumn
ButtonType="Lin kButton" UpdateText="Upd ate"
CancelText="Can cel"
EditText="Edit" />
</columns>
</asp:datagrid>
<br>
<tr>
<td>
<asp:button id="btnReturn"
font-size="8" runat="server" text="Return to
Main Page" OnClick="btnRet urn_Click"/>
</td>
</tr>
<tr>
<td>
<asp:Button id="btnInsert"
font-size="8" runat="server" text="Insert
Another Project" OnClick="btnIns ert_Click"/>
</td>
</tr>
</form>
</table>
</body>
</html>
Codebehind page:

[code:1:0fdbcec5 83]
Imports System
Imports System.Collecti ons
Imports System.Data
Imports System.Data.Sql Client
Imports System.Web
Imports System.Web.UI.W ebControls

Public Class PSDataGrid

Inherits System.Web.UI.P age
Protected WithEvents dgProjectSummar y As
System.Web.UI.W ebControls.Data Grid

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
If Not IsPostBack Then
LoadGrid()
End If
End Sub

Private Sub LoadGrid()
Dim intProjectID As Integer
intProjectID = Session("Projec tID")

Dim dsProjectSummar y As New DataSet()
Dim strConnection As String = "" 'Connection string
omitted from post
Dim objConnection As New SqlConnection(s trConnection)
Dim objCommand As New
SqlCommand("dbo .ap_DisplayNewP roject",
objConnection)

objCommand.Comm andType = CommandType.Sto redProcedure

Dim objParameter As New SqlParameter("@ ProjectID",
SqlDbType.Int)
objCommand.Para meters.Add(objP arameter)
objParameter.Di rection = ParameterDirect ion.Input
objParameter.Va lue = intProjectID

objConnection.O pen()
dgProjectSummar y.DataSource = objCommand.Exec uteReader()
dgProjectSummar y.DataBind()
objConnection.C lose()
End Sub

Public Sub btnReturn_Click (ByVal Source As Object, ByVal E As
EventArgs)
Response.Redire ct("default.htm ")
End Sub

Public Sub btnInsert_Click (ByVal Source As Object, ByVal E As
EventArgs)
Response.Redire ct("BURSProject Insert.aspx")
End Sub

Public Sub EditRecord(ByVa l Sender As Object, ByVal E As
DataGridCommand EventArgs)
dgProjectSummar y.EditItemIndex = E.Item.ItemInde x
LoadGrid()
End Sub

Public Sub CancelEdit(ByVa l Sender As Object, ByVal E As
DataGridCommand EventArgs)
dgProjectSummar y.EditItemIndex = -1
LoadGrid()
End Sub

Public Sub UpdateRecord(By Val Sender As Object, ByVal E As
DataGridCommand EventArgs)
Dim strConnection As String = "" 'Connection string
omitted from post
Dim objConnection As New SqlConnection(s trConnection)
Dim objCommand As New
SqlCommand("ap_ UpdateProjectSu mmary",
objConnection)

Dim idProjectName As String =
CType(e.Item.Fi ndControl("txtP rojectName"),
TextBox).Text
Dim idProjectDescri ption As String =
CType(e.Item.Fi ndControl("txtP rojectDescripti on"),
TextBox).Text
Dim idPhase As String =
CType(e.Item.Fi ndControl("txtP hase"),
TextBox).Text
Dim idEstimatedDepl oy As String =
CType(e.Item.Fi ndControl("txtE stimatedDeploy" ),
TextBox).Text
Dim idRecentAccompl ishments As String =
CType(e.Item.Fi ndControl("txtR ecentAccomplish ments"),
TextBox).Text
Dim idFocusItems As String =
CType(e.Item.Fi ndControl("txtF ocusItems"),
TextBox).Text
Dim idEstBenefits As String =
CType(e.Item.Fi ndControl("txtE stBenefits"),
TextBox).Text
Dim idISCost As String =
CType(e.Item.Fi ndControl("txtI SCost"),
TextBox).Text
Dim idCorporateISLe ad As String =
CType(e.Item.Fi ndControl("txtC orporateISLead" ),
TextBox).Text
Dim idBusinessLead As String =
CType(e.Item.Fi ndControl("txtB usinessLead"),
TextBox).Text

objCommand.Comm andType = CommandType.Sto redProcedure

Dim objParameter1 As New
SqlParameter("@ ProjectName", SqlDbType.VarCh ar,
100)
objCommand.Para meters.Add(objP arameter1)
objParameter1.D irection = ParameterDirect ion.Input
objParameter1.V alue = idProjectName

Dim objParameter2 As New
SqlParameter("@ ProjectDescript ion", SqlDbType.VarCh ar,
2000)
objCommand.Para meters.Add(objP arameter2)
objParameter2.D irection = ParameterDirect ion.Input
objParameter2.V alue = idProjectDescri ption

Dim objParameter3 As New SqlParameter("@ Phase",
SqlDbType.VarCh ar, 30)
objCommand.Para meters.Add(objP arameter3)
objParameter3.D irection = ParameterDirect ion.Input
objParameter3.V alue = idPhase

Dim objParameter4 As New
SqlParameter("@ EstimatedDeploy ",
SqlDbType.DateT ime)
objCommand.Para meters.Add(objP arameter4)
objParameter4.D irection = ParameterDirect ion.Input
objParameter4.V alue = idEstimatedDepl oy

Dim objParameter5 As New
SqlParameter("@ RecentAccomplis hments",
SqlDbType.VarCh ar, 2000)
objCommand.Para meters.Add(objP arameter5)
objParameter5.D irection = ParameterDirect ion.Input
objParameter5.V alue = idRecentAccompl ishments

Dim objParameter6 As New SqlParameter("@ FocusItems",
SqlDbType.VarCh ar, 2000)
objCommand.Para meters.Add(objP arameter6)
objParameter6.D irection = ParameterDirect ion.Input
objParameter6.V alue = idFocusItems

Dim objParameter7 As New
SqlParameter("@ EstBenefits", SqlDbType.VarCh ar,
200)
objCommand.Para meters.Add(objP arameter7)
objParameter7.D irection = ParameterDirect ion.Input
objParameter7.V alue = idEstBenefits

Dim objParameter8 As New SqlParameter("@ ISCost",
SqlDbType.VarCh ar, 15)
objCommand.Para meters.Add(objP arameter8)
objParameter8.D irection = ParameterDirect ion.Input
objParameter8.V alue = idISCost

Dim objParameter9 As New
SqlParameter("@ CorporateISLead ", SqlDbType.VarCh ar,
50)
objCommand.Para meters.Add(objP arameter9)
objParameter9.D irection = ParameterDirect ion.Input
objParameter9.V alue = idCorporateISLe ad

Dim objParameter10 As New
SqlParameter("@ BusinessLead", SqlDbType.VarCh ar,
50)
objCommand.Para meters.Add(objP arameter10)
objParameter10. Direction = ParameterDirect ion.Input
objParameter10. Value = idBusinessLead

objConnection.O pen()
dgProjectSummar y.DataSource = objCommand.Exec uteReader()
dgProjectSummar y.DataBind()
objConnection.C lose()

dgProjectSummar y.EditItemIndex = -1
LoadGrid()
End Sub

Public Sub Item_Bound(Send er As Object, E As
System.Web.UI.W ebControls.Data GridItemEventAr gs) Handles
dgProjectSummar y.ItemDataBound
Dim txtEstimatedDep loy As TextBox
txtEstimatedDep loy =
e.Item.FindCont rol("txtEstimat edDeploy")

Dim lnkCalendar As Hyperlink
lnkCalendar = e.Item.FindCont rol("lnkCalenda r")

lnkCalendar.Att ributes("OnClic k") =
String.Format(" window.open('Ca lendar.aspx?tex tbox={0}','cal' ,'...')",
txtEstimatedDep loy)
End Sub

Public Function GetDepartmentNa mes() As ICollection
Dim strConnection As String = "" 'Connection string
omitted from post
Dim objConnection As New SqlConnection(s trConnection)
Dim daDeptNames As SqlDataAdapter = New
SqlDataAdapter( "SELECT DepartmentName FROM Department",
objConnection)
Dim dsDeptNames As DataSet = New DataSet()

daDeptNames.Fil l(dsDeptNames)
Return dsDeptNames.Tab les(0).DefaultV iew
End Function

Public Function GetStatus() As ICollection
Dim strConnection As String = "" 'Connection string
omitted from post
Dim objConnection As New SqlConnection(s trConnection)
Dim daStatus As SqlDataAdapter = New
SqlDataAdapter( "SELECT Status FROM Status",
objConnection)
Dim dsStatus As DataSet = New DataSet()

daStatus.Fill(d sStatus)
Return dsStatus.Tables (0).DefaultView
End Function

End Class
[/code:1:0fdbcec5 83]

I'm rather new to programming in .NET so any suggestions will be
appreciated.

*-----------------------*
Posted at:
www.GroupSrv.co m
*-----------------------*
Nov 21 '05 #1
0 4021

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

Similar topics

0
249
by: Marco Di Gregorio | last post by:
I'm having a problem I would like to display data to a datagrid I using a Calendar When i klik to a calendar i will put a begin date and an end date into a textbox(txtBeginDate And txtEndDate) The code is: txtBeginDate.Text = Calendar.SelectionStart And txtEndDate.Text = Calendar.SelectionEn I have made a OleDBDataAdapter And a SQL statement like this: It does not wor Dim objADa As New OleDbDataAdapter ("SELECT User, ID, Date FROM...
1
1677
by: Gilles T. | last post by:
I have calendar control in Javascript including in the Head of mu page: <script charset="iso-8859-1" language="JavaScript" src="popcalendar.js"></script> I call this calendar popup with a image link button and working very good: <asp:Textbox CssClass="edit_item" id="txtEditDernieresResolutions" runat="server" width="80"/> <a href='javascript:showCalendar(frmForm.imgDernieresResolutions,...
1
1589
by: Jay | last post by:
Hello, I have Calendar inside a datagrid. Whenever user clicks the edit button in the datagrid calendar is visible. The problem occurs when user navigates to a particular month and picks a date. The Calendar control does a postback and it reverts it back to the default month.
2
2846
by: Alex | last post by:
Hi all, I'm writing a small web application which searches a database based on a date field, and populates a datagrid control with the results. The datagrid control has selection buttons added to it to view additional details about the selected result (a second database query is triggered). I want this second query to pop up in a new window, the way it would if I used "window.open" in javascript. I've added a function in the
4
1857
by: Mike | last post by:
Hi, Is there a possibility to have one of the Web Control Datagrid's column as a Calendar when editing data? Any resources on this subject? Thanks Mike
0
1533
by: Caesar Augustus | last post by:
I'm having a problem with two different javascript controls in my app. The first chuck of javascript that I pasted into my app is the client-side calendar control popup which works fine when first used. The second piece of javascript pasted into the app serves as a data validation message box that fires after some server-side code executes (if a certain error condition exists). This action is tied to a submit button that upon NO error...
2
3158
by: sorobor | last post by:
dear sir .. i am using cakephp freamwork ..By the way i m begener in php and javascript .. My probs r bellow I made a javascript calender ..there is a close button ..when i press close button then the calender gone actually i want if i click outside off the calender then it should me removed ..How kan i do this ... Pls inform me as early as possible .. I am waiting for ur quick replay ...Here i attached the source code .... <!DOCTYPE...
1
2590
by: KRISHNA PRAVI | last post by:
the error is "runtime error object expected" here is the code....................................................................................... <script language="javascript" src="../Scripts/calender.js"></script> </HEAD> <body bgColor="white" MS_POSITIONING="GridLayout"> <form id="Form1" style="LEFT: 0px; POSITION: absolute; TOP: 0px" method="post" runat="server"> <!--<table width="100%" style="LEFT: 0px; POSITION:...
1
3849
by: xtremebass | last post by:
Hello Bytes, i have a calender program which is created by using Javascript. when i execute that program using Internet Explorer,it works properly but when i tried in Mozilla firefox it didnt worked. Dates of particular year,month not displayed in that calender grids. i have collected that coding from online free resources. Here i have attached code for your reference. please do suggest me how do i display the calender date in grids in...
0
9525
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
10221
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
10169
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
10003
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
6785
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
5440
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
5569
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4115
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
3730
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.