473,654 Members | 3,060 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

In-place Updating in Datagrid not working

A P
Hi!

I have created a sample datagrid that can update data on a database. Please
help me solve the problem, I have attached both aspx and code behind
(aspx.vb):

_______________ _______

datagrid.aspx

<%@ Page Language="vb" AutoEventWireup ="false" Codebehind="Dat aGrid.aspx.vb"
Inherits="vs_23 10.DataGrid"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>DataGrid </title>
<meta name="GENERATOR " content="Micros oft Visual Studio .NET 7.1">
<meta name="CODE_LANG UAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaul tClientScript" content="JavaSc ript">
<meta name="vs_target Schema"
content="http://schemas.microso ft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING= "GridLayout ">
<form id="Form1" method="post" runat="server">
<asp:DataGrid id=DataGrid1 style="Z-INDEX: 101; LEFT: 51px; POSITION:
absolute; TOP: 51px" runat="server" DataSource="<%# DataSet21 %>"
DataKeyField="N ounID" BorderColor="#C C9966" BorderStyle="No ne"
BorderWidth="1p x" BackColor="Whit e" CellPadding="4" Font-Size="10pt"
AutoGenerateCol umns="False" Font-Names="Arial" AllowPaging="Tr ue">
<SelectedItemSt yle Font-Bold="True" ForeColor="#663 399"
BackColor="#FFC C66"></SelectedItemSty le>
<ItemStyle ForeColor="#330 099" BackColor="Whit e"></ItemStyle>
<HeaderStyle Font-Bold="True" ForeColor="#FFF FCC"
BackColor="#990 000"></HeaderStyle>
<FooterStyle ForeColor="#330 099" BackColor="#FFF FCC"></FooterStyle>
<Columns>
<asp:BoundColum n DataField="Noun ID" SortExpression= "NounID"
HeaderText="ID" ></asp:BoundColumn >
<asp:BoundColum n DataField="Noun Desc" SortExpression= "NounDesc"
HeaderText="Nou n"></asp:BoundColumn >
<asp:TemplateCo lumn HeaderText="Act ion">
<ItemTemplate >
<asp:LinkButt on runat="server" Text="Edit" CommandName="Ed it"
CausesValidatio n="false"></asp:LinkButton>
</ItemTemplate>
<EditItemTempla te>
<asp:LinkButt on runat="server" Text="Update"
CommandName="Up date"></asp:LinkButton> &nbsp;
<asp:LinkButt on runat="server" Text="Cancel" CommandName="Ca ncel"
CausesValidatio n="false"></asp:LinkButton>
</EditItemTemplat e>
</asp:TemplateCol umn>
</Columns>
<PagerStyle HorizontalAlign ="Center" ForeColor="#330 099"
BackColor="#FFF FCC"></PagerStyle>
</asp:DataGrid>
<asp:Label id="Label1" style="Z-INDEX: 102; LEFT: 51px; POSITION:
absolute; TOP: 17px" runat="server"> Label</asp:Label>
</form>
</body>
</HTML>

_______________ _________

datagrid.aspx.v b

Imports System.Data.Ole Db
Public Class DataGrid
Inherits System.Web.UI.P age
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'Put user code to initialize the page here
OleDbDataAdapte r1.Fill(DataSet 21)
DataGrid1.DataB ind()
End Sub

Private Sub DataGrid1_EditC ommand(ByVal source As Object, ByVal e As
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles
DataGrid1.EditC ommand
DataGrid1.EditI temIndex() = e.Item.ItemInde x
DataGrid1.DataB ind()
End Sub
Private Sub DataGrid1_Updat eCommand(ByVal source As Object, ByVal e As
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles
DataGrid1.Updat eCommand
Dim NounTable As DataSet2.tbltsN ounDataTable

NounTable = DataSet21.tblts Noun

Dim rowToUpdate As DataSet2.tbltsN ounRow

rowToUpdate = NounTable.Rows( e.Item.ItemInde x)
rowToUpdate.Nou nDesc = CType(e.Item.Ce lls(1).Controls (0),
TextBox).Text

OleDbDataAdapte r1.Update(DataS et21)
Label1.Text = rowToUpdate.Nou nDesc

DataGrid1.EditI temIndex = -1
DataGrid1.DataB ind()
End Sub

Private Sub DataGrid1_PageI ndexChanged(ByV al source As Object, ByVal e
As System.Web.UI.W ebControls.Data GridPageChanged EventArgs) Handles
DataGrid1.PageI ndexChanged
DataGrid1.Curre ntPageIndex = e.NewPageIndex
DataGrid1.DataB ind()
End Sub

Private Sub DataGrid1_Cance lCommand(ByVal source As Object, ByVal e As
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles
DataGrid1.Cance lCommand
DataGrid1.EditI temIndex = -1
DataGrid1.DataB ind()
End Sub
End Class

_______________ ____
Nov 19 '05 #1
9 1583
Hey, A P,

what *is* the problem you have ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:um******** ******@TK2MSFTN GP15.phx.gbl...
Hi!

I have created a sample datagrid that can update data on a database.
Please
help me solve the problem, I have attached both aspx and code behind
(aspx.vb):


....code snipped.
Nov 19 '05 #2
A P
Data is not updating. I've already check on the database and the content is
not changed if I click on the update link. I'm using MS Access for the
database.

Me

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:#3******** ******@TK2MSFTN GP09.phx.gbl...
Hey, A P,

what *is* the problem you have ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:um******** ******@TK2MSFTN GP15.phx.gbl...
Hi!

I have created a sample datagrid that can update data on a database.
Please
help me solve the problem, I have attached both aspx and code behind
(aspx.vb):


...code snipped.

Nov 19 '05 #3
I cut out the other newsgroups.

Are you getting any errors ?
If you are, please post the error text.

Did you write that code, or is that a sample from somewhere ?
If it is a sample from somewhere, did you change anything ?
If you did, what did you change ?

Does you database content display, but it just doesn't update ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:uD******** ******@TK2MSFTN GP15.phx.gbl...
Data is not updating. I've already check on the database and the content
is
not changed if I click on the update link. I'm using MS Access for the
database.

Me

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:#3******** ******@TK2MSFTN GP09.phx.gbl...
Hey, A P,

what *is* the problem you have ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:um******** ******@TK2MSFTN GP15.phx.gbl...
> Hi!
>
> I have created a sample datagrid that can update data on a database.
> Please
> help me solve the problem, I have attached both aspx and code behind
> (aspx.vb):
>


...code snipped.


Nov 19 '05 #4
A P
No error.

The code was from MSDN
website.(http://msdn.microsoft.com/library/de...brary/en-us/vb
con/html/vbtskallowingus erstoedititemsi ndatagridwebcon trol.asp)

I can view the datagrid, click on edit and can cancel data. But when I will
click on update, the view will return back to edit mode(without textbox) and
the content is not changed.

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:uo******** ******@tk2msftn gp13.phx.gbl...
I cut out the other newsgroups.

Are you getting any errors ?
If you are, please post the error text.

Did you write that code, or is that a sample from somewhere ?
If it is a sample from somewhere, did you change anything ?
If you did, what did you change ?

Does you database content display, but it just doesn't update ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:uD******** ******@TK2MSFTN GP15.phx.gbl...
Data is not updating. I've already check on the database and the content
is
not changed if I click on the update link. I'm using MS Access for the
database.

Me

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:#3******** ******@TK2MSFTN GP09.phx.gbl...
Hey, A P,

what *is* the problem you have ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:um******** ******@TK2MSFTN GP15.phx.gbl...
> Hi!
>
> I have created a sample datagrid that can update data on a database.
> Please
> help me solve the problem, I have attached both aspx and code behind
> (aspx.vb):
>

...code snipped.



Nov 19 '05 #5
Sometimes it's hard to get piecemeal
code to work as we want it do.

Let me suggest yo you that you take a good look
at a complete page which does what you want.

Datagrid6.aspx is in the QuickStart samples,
and you can see it working online at :
http://www.dotnetjunkies.com/quickst...datagrid6.aspx

The source code for that datagrid edit page is at :
http://www.dotnetjunkies.com/quickst.../datagrid6.src
in both VB and C#

You'll find that sample a lot easier to dissect,
study, and then modify for your own use.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
No error.

The code was from MSDN
website.(http://msdn.microsoft.com/library/de...brary/en-us/vb
con/html/vbtskallowingus erstoedititemsi ndatagridwebcon trol.asp)

I can view the datagrid, click on edit and can cancel data. But when I
will
click on update, the view will return back to edit mode(without textbox)
and
the content is not changed.

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:uo******** ******@tk2msftn gp13.phx.gbl...
I cut out the other newsgroups.

Are you getting any errors ?
If you are, please post the error text.

Did you write that code, or is that a sample from somewhere ?
If it is a sample from somewhere, did you change anything ?
If you did, what did you change ?

Does you database content display, but it just doesn't update ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"A P" <ap@textguru.ph > wrote in message
news:uD******** ******@TK2MSFTN GP15.phx.gbl...
> Data is not updating. I've already check on the database and the
> content
> is
> not changed if I click on the update link. I'm using MS Access for the
> database.
>
> Me
>
> "Juan T. Llibre" <no***********@ nowhere.com> wrote in message
> news:#3******** ******@TK2MSFTN GP09.phx.gbl...
>> Hey, A P,
>>
>> what *is* the problem you have ?
>>
>>
>>
>> Juan T. Llibre
>> ASP.NET MVP
>> http://asp.net.do/foros/
>> Foros de ASP.NET en Español
>> Ven, y hablemos de ASP.NET...
>> =============== =======
>>
>> "A P" <ap@textguru.ph > wrote in message
>> news:um******** ******@TK2MSFTN GP15.phx.gbl...
>> > Hi!
>> >
>> > I have created a sample datagrid that can update data on a database.
>> > Please
>> > help me solve the problem, I have attached both aspx and code behind
>> > (aspx.vb):
>> >
>>
>> ...code snipped.
>>
>>
>
>



Nov 19 '05 #6
AP,

This is a lot of code, first of all would I change what happen in the load
event in something like this (typed in this message so watch typos).
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack then
OleDbDataAdapte r1.Fill(DataSet 21)
session.item("d s21") = DataSet21
Else
Dataset21 = directcast(sess ion.Item("ds21" ), dataset)
End if
DataGrid1.DataS ource = Dataset21
DataGrid1.DataB ind()
End Sub

And than see what happens.

Cor
Nov 19 '05 #7
A P
Cor,

Same output. No change on the field. Much better, if its OK with you to post
a simple code that uses Datagrid on Access Database that can update values.
Hope that you'll grant my request.

regards,
Me

"Cor Ligthert" <no************ @planet.nl> wrote in message
news:u9******** ******@TK2MSFTN GP14.phx.gbl...
AP,

This is a lot of code, first of all would I change what happen in the load
event in something like this (typed in this message so watch typos).
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'Put user code to initialize the page here
If Not IsPostBack then
OleDbDataAdapte r1.Fill(DataSet 21)
session.item("d s21") = DataSet21
Else
Dataset21 = directcast(sess ion.Item("ds21" ), dataset)
End if
DataGrid1.DataS ource = Dataset21
DataGrid1.DataB ind()
End Sub

And than see what happens.

Cor

Nov 19 '05 #8
AP,
Same output. No change on the field. Much better, if its OK with you to
post
a simple code that uses Datagrid on Access Database that can update
values.
Hope that you'll grant my request.


At your service, I never use the designer so it was more work than I thought

\\\
'This is a simple project without any error trapping
'Create a new project
'Select an oledbdataadapte r
'Use a Northwind MDB
'Select Employees and from that EmployeeID, FirstName, LastName
'Generate a dataset
'Drag a datagrid and set in the propertybuilder the datasource, datamember
'set the Edit, Cancel, Update column, datacolumns in the sequence Id,
FirstName, Lastname

'And than this code
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As _
System.EventArg s) Handles MyBase.Load
If Not IsPostBack Then
OleDbDataAdapte r1.Fill(DataSet 11)
Session.Item("d s21") = DataSet11
DataGrid1.DataB ind()
Else
DataSet11 = DirectCast(Sess ion.Item("ds21" ), DataSet1)
End If
DataGrid1.DataS ource = DataSet11
End Sub
Private Sub DataGrid1_EditC ommand(ByVal source As Object, ByVal e As _
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles _
DataGrid1.EditC ommand
DataGrid1.EditI temIndex() = e.Item.ItemInde x
DataGrid1.DataB ind()
End Sub
Private Sub DataGrid1_Updat eCommand(ByVal source As Object, ByVal e As _
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles _
DataGrid1.Updat eCommand
Dim dv As New DataView(DataSe t11.Employees)
dv.RowFilter = "EmployeeID = '" _
& DirectCast(e.It em.Cells(1).Con trols(0), TextBox).Text & "'"
dv(0)("FirstNam e") = DirectCast(e.It em.Cells(2).Con trols(0),
TextBox).Text
dv(0)("LastName ") = DirectCast(e.It em.Cells(3).Con trols(0),
TextBox).Text
OleDbDataAdapte r1.Update(DataS et11.Employees)
Session.Item("d s21") = DataSet11
DataGrid1.DataB ind()
End Sub
Private Sub DataGrid1_Cance lCommand(ByVal source As Object, ByVal e As _
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles _
DataGrid1.Cance lCommand
DataGrid1.EditI temIndex = -1
DataGrid1.DataB ind()
End Sub
End Class
///
Nov 19 '05 #9
A P
Thanks Cor! I already made it but I need to study first the code since I
have no idea on the "Session.It em" thing and "DirectCast ". Thanks again.
"Cor Ligthert" <no************ @planet.nl> wrote in message
news:OU******** ******@TK2MSFTN GP09.phx.gbl...
AP,
Same output. No change on the field. Much better, if its OK with you to
post
a simple code that uses Datagrid on Access Database that can update
values.
Hope that you'll grant my request.

At your service, I never use the designer so it was more work than I

thought
\\\
'This is a simple project without any error trapping
'Create a new project
'Select an oledbdataadapte r
'Use a Northwind MDB
'Select Employees and from that EmployeeID, FirstName, LastName
'Generate a dataset
'Drag a datagrid and set in the propertybuilder the datasource, datamember
'set the Edit, Cancel, Update column, datacolumns in the sequence Id,
FirstName, Lastname

'And than this code
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As _
System.EventArg s) Handles MyBase.Load
If Not IsPostBack Then
OleDbDataAdapte r1.Fill(DataSet 11)
Session.Item("d s21") = DataSet11
DataGrid1.DataB ind()
Else
DataSet11 = DirectCast(Sess ion.Item("ds21" ), DataSet1)
End If
DataGrid1.DataS ource = DataSet11
End Sub
Private Sub DataGrid1_EditC ommand(ByVal source As Object, ByVal e As _
System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles _
DataGrid1.EditC ommand
DataGrid1.EditI temIndex() = e.Item.ItemInde x
DataGrid1.DataB ind()
End Sub
Private Sub DataGrid1_Updat eCommand(ByVal source As Object, ByVal e As _ System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles _
DataGrid1.Updat eCommand
Dim dv As New DataView(DataSe t11.Employees)
dv.RowFilter = "EmployeeID = '" _
& DirectCast(e.It em.Cells(1).Con trols(0), TextBox).Text & "'"
dv(0)("FirstNam e") = DirectCast(e.It em.Cells(2).Con trols(0),
TextBox).Text
dv(0)("LastName ") = DirectCast(e.It em.Cells(3).Con trols(0),
TextBox).Text
OleDbDataAdapte r1.Update(DataS et11.Employees)
Session.Item("d s21") = DataSet11
DataGrid1.DataB ind()
End Sub
Private Sub DataGrid1_Cance lCommand(ByVal source As Object, ByVal e As _ System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles _
DataGrid1.Cance lCommand
DataGrid1.EditI temIndex = -1
DataGrid1.DataB ind()
End Sub
End Class
///

Nov 19 '05 #10

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

Similar topics

3
6760
by: Curious Expatriate | last post by:
Hi- I'm completely stumped. I'm trying to write some code that will parse a file and rewrite it with all URLs replaced by something else. For example: if the file looks like this: <b>click here</b><a href="http://www.cnn.com">click me</a> ... then the output should be this:
1
6297
by: JS Bangs | last post by:
I started using PHP's object-oriented stuff a little while ago, which has mostly been a joy. However, I've noticed that they don't seem to echo as I would like. Eg: $this->field = 255; $this->key = 'id'; echo "$this->key is $this->field"; // prints "id is Array" // Thus I am forced to do this $keyval = $this->field;
5
16153
by: lawrence | last post by:
I've waited 6 weeks for an answer to my other question and still no luck, so let me rephrase the question. I know I can do this: <form method="post" action="$self"> <input type="text" name="filesToDelete"> <input type="text" name="filesToDelete"> <input type="text" name="filesToDelete"> </form>
0
4919
by: Ben Eisenberg | last post by:
I'm trying to run a php script setuid. I've tried POSIX_setuid but you have to be root to run this. The files are located on a public access unix system and have me as the owner and nobody as the group. Rather than make them group writable where in anybody could make a script and write to my files i would like to make them setuid. I tried making a c prog with the setuid function. I used chmod and made it setuid. I called it with the system...
2
8559
by: Felix | last post by:
Hi, I've a problem: I want to have the result of my Mysql Query in a Table in my php file. Now I've this: <?
1
8704
by: James | last post by:
What is the best way to update a record in a MYSQL DB using a FORM and PHP ? Where ID = $ID ! Any examples or URLS ? Thanks
1
3419
by: phpkid | last post by:
Howdy I've been given conflicting answers about search engines picking up urls like: http://mysite.com/index.php?var1=1&var2=2&var3=3 Do search engines pick up these urls? I've been considering converting a site of mine to PHP-Nuke, but if the individual modules aren't picked up in search engines I'm not going to do it. Thanks phpKid
1
2552
by: lawrence | last post by:
What is the PHP equivalent of messaging, as in Java?
3
4915
by: Quinten Carlson | last post by:
Is there a way to conditionally define a function in php? I'm trying to run a php page 10 times using the include statement, but I get an error because my function is already defined. The docs state that a function cannot be undefined and adding "exit" to the included page doesn't free it up either. Any suggestions? B44CCD21
2
27644
by: Phillip Wu | last post by:
Hi, I saw a previous post about sending arrays but did not quite understand the answers. The problem is that I would like to pass an entire array as a hidden input field from one php script to another. I've simplified the code where form1.php calls form2.php when "Go" is hit: form1.php
0
8816
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
8709
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
8494
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
8596
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
7309
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
6162
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
4150
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
4297
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1597
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.