473,763 Members | 1,893 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Try...Catch...F inally not firing finally?

Howdy,

I ran into a very interesting issue and I'm curios as to how this is suppose
to work. I am using Try...Catch...F inally statements for all database
connectivity in my ASP.NET 2.0 web application. I'm connecting to IBM's
Universe 10.2 using UniObjects.Net. Anyway, if the connection errors, the
Finally closes the connection. What I see happening is that the function in
the Finally statement either isn't running or doesn't apply what its suppose
to.

For example. Running Visual Studio 2005, I debug my web app and step through
a function that I am purposly erroring on. The session opens, then a command
errors out. In the Catch I am taking the ex.tostring and sending it to a
class function that I then email that to myself and then send the user to a
default error page using server.transfer ("page",fals e). After that function
runs, the debugger sends me back to the calling function, finishes the Catch
then fires the Finally, which closes the session.

So my problem is that it appears that the database session is not closing in
the finally. I just moved the close session to the first line in the Catch
and it appears to close it properly...

Thanks!!

David Lozzi

Apr 23 '07 #1
12 2690

What exactly does the finally clause look like? Is it possible that
something within the finally clause is generating a second error
before the database "session" is closed (what do you mean exactly,
connection? if so use the using clause instead anyways).

Sam
------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.

On Mon, 23 Apr 2007 17:46:36 -0400, "David Lozzi"
<dl****@nospam. nospamwrote:
>Howdy,

I ran into a very interesting issue and I'm curios as to how this is suppose
to work. I am using Try...Catch...F inally statements for all database
connectivity in my ASP.NET 2.0 web application. I'm connecting to IBM's
Universe 10.2 using UniObjects.Net. Anyway, if the connection errors, the
Finally closes the connection. What I see happening is that the function in
the Finally statement either isn't running or doesn't apply what its suppose
to.

For example. Running Visual Studio 2005, I debug my web app and step through
a function that I am purposly erroring on. The session opens, then a command
errors out. In the Catch I am taking the ex.tostring and sending it to a
class function that I then email that to myself and then send the user to a
default error page using server.transfer ("page",fals e). After that function
runs, the debugger sends me back to the calling function, finishes the Catch
then fires the Finally, which closes the session.

So my problem is that it appears that the database session is not closing in
the finally. I just moved the close session to the first line in the Catch
and it appears to close it properly...

Thanks!!

David Lozzi
Apr 24 '07 #2
server transfer aborts the current thread, so the finally will not fire.
you should not call it in a catch statement.

-- bruce (sqlwork.com)

David Lozzi wrote:
Howdy,

I ran into a very interesting issue and I'm curios as to how this is
suppose to work. I am using Try...Catch...F inally statements for all
database connectivity in my ASP.NET 2.0 web application. I'm connecting
to IBM's Universe 10.2 using UniObjects.Net. Anyway, if the connection
errors, the Finally closes the connection. What I see happening is that
the function in the Finally statement either isn't running or doesn't
apply what its suppose to.

For example. Running Visual Studio 2005, I debug my web app and step
through a function that I am purposly erroring on. The session opens,
then a command errors out. In the Catch I am taking the ex.tostring and
sending it to a class function that I then email that to myself and then
send the user to a default error page using
server.transfer ("page",fals e). After that function runs, the debugger
sends me back to the calling function, finishes the Catch then fires the
Finally, which closes the session.

So my problem is that it appears that the database session is not
closing in the finally. I just moved the close session to the first line
in the Catch and it appears to close it properly...

Thanks!!

David Lozzi
Apr 24 '07 #3

Not true. The finally always runs.

protected void Page_Load(objec t sender, EventArgs e)
{
try
{
Log.Debug(this, "Throwing error...");
throw new Exception();
}
catch
{
Log.Debug(this, "Caught..") ;
Server.Transfer ("gateway.aspx" , false);
}
finally
{
Log.Debug(this, "Finally... ");
}
}
produced..

2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Throwing
error...
2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Caught..
2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Finally...

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
On Tue, 24 Apr 2007 08:49:33 -0700, bruce barker <no****@nospam. com>
wrote:
>server transfer aborts the current thread, so the finally will not fire.
you should not call it in a catch statement.

-- bruce (sqlwork.com)
Apr 24 '07 #4
The two conditions really aren't related - i don't think. Finally blocks
always fire, there's an implicit guarantee for that. True there was a bug in
1.1 that abrogated that guarantee, but it is fixed in 2.0. So the problem
would lie in the close code. It's quite possible that close is erroring out.
Put a trace from the db end to see if the close command is funneling thru to
the database engine.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
"David Lozzi" <dl****@nospam. nospamwrote in message
news:C8******** *************** ***********@mic rosoft.com...
Howdy,

I ran into a very interesting issue and I'm curios as to how this is
suppose to work. I am using Try...Catch...F inally statements for all
database connectivity in my ASP.NET 2.0 web application. I'm connecting to
IBM's Universe 10.2 using UniObjects.Net. Anyway, if the connection
errors, the Finally closes the connection. What I see happening is that
the function in the Finally statement either isn't running or doesn't
apply what its suppose to.

For example. Running Visual Studio 2005, I debug my web app and step
through a function that I am purposly erroring on. The session opens, then
a command errors out. In the Catch I am taking the ex.tostring and sending
it to a class function that I then email that to myself and then send the
user to a default error page using server.transfer ("page",fals e). After
that function runs, the debugger sends me back to the calling function,
finishes the Catch then fires the Finally, which closes the session.

So my problem is that it appears that the database session is not closing
in the finally. I just moved the close session to the first line in the
Catch and it appears to close it properly...

Thanks!!

David Lozzi

Apr 25 '07 #5
I ran a similar test instead used response.write( ) and it never reached the
finally........

"Samuel R. Neff" <sa********@nom ail.comwrote in message
news:dh******** *************** *********@4ax.c om...
>
Not true. The finally always runs.

protected void Page_Load(objec t sender, EventArgs e)
{
try
{
Log.Debug(this, "Throwing error...");
throw new Exception();
}
catch
{
Log.Debug(this, "Caught..") ;
Server.Transfer ("gateway.aspx" , false);
}
finally
{
Log.Debug(this, "Finally... ");
}
}
produced..

2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Throwing
error...
2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Caught..
2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Finally...

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
On Tue, 24 Apr 2007 08:49:33 -0700, bruce barker <no****@nospam. com>
wrote:
>>server transfer aborts the current thread, so the finally will not fire.
you should not call it in a catch statement.

-- bruce (sqlwork.com)
May 7 '07 #6
I ran a test using response.write( ) in each section of the try, and it never
reached the finally........

And the close works fine, it calls a simple
UniObjects.Clos eSession(unises sion). And when I moved it to the first line
of the catch it works fine everytime. We had a trace running on the DB end
and it kept saying that the session was never closed, no other errors.
"Alvin Bruney [MVP]" <some guy without an email addresswrote in message
news:O0******** ******@TK2MSFTN GP03.phx.gbl...
The two conditions really aren't related - i don't think. Finally blocks
always fire, there's an implicit guarantee for that. True there was a bug
in 1.1 that abrogated that guarantee, but it is fixed in 2.0. So the
problem would lie in the close code. It's quite possible that close is
erroring out. Put a trace from the db end to see if the close command is
funneling thru to the database engine.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
"David Lozzi" <dl****@nospam. nospamwrote in message
news:C8******** *************** ***********@mic rosoft.com...
>Howdy,

I ran into a very interesting issue and I'm curios as to how this is
suppose to work. I am using Try...Catch...F inally statements for all
database connectivity in my ASP.NET 2.0 web application. I'm connecting
to IBM's Universe 10.2 using UniObjects.Net. Anyway, if the connection
errors, the Finally closes the connection. What I see happening is that
the function in the Finally statement either isn't running or doesn't
apply what its suppose to.

For example. Running Visual Studio 2005, I debug my web app and step
through a function that I am purposly erroring on. The session opens,
then a command errors out. In the Catch I am taking the ex.tostring and
sending it to a class function that I then email that to myself and then
send the user to a default error page using
server.transfe r("page",false) . After that function runs, the debugger
sends me back to the calling function, finishes the Catch then fires the
Finally, which closes the session.

So my problem is that it appears that the database session is not closing
in the finally. I just moved the close session to the first line in the
Catch and it appears to close it properly...

Thanks!!

David Lozzi

May 7 '07 #7
Can you post a short sample application that demonstrates the problem, i'd
like to take a closer look.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
"David Lozzi" <dl****@nospam. nospamwrote in message
news:C3******** *************** ***********@mic rosoft.com...
>I ran a test using response.write( ) in each section of the try, and it
never reached the finally........

And the close works fine, it calls a simple
UniObjects.Clos eSession(unises sion). And when I moved it to the first line
of the catch it works fine everytime. We had a trace running on the DB end
and it kept saying that the session was never closed, no other errors.
"Alvin Bruney [MVP]" <some guy without an email addresswrote in message
news:O0******** ******@TK2MSFTN GP03.phx.gbl...
>The two conditions really aren't related - i don't think. Finally blocks
always fire, there's an implicit guarantee for that. True there was a bug
in 1.1 that abrogated that guarantee, but it is fixed in 2.0. So the
problem would lie in the close code. It's quite possible that close is
erroring out. Put a trace from the db end to see if the close command is
funneling thru to the database engine.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
"David Lozzi" <dl****@nospam. nospamwrote in message
news:C8******* *************** ************@mi crosoft.com...
>>Howdy,

I ran into a very interesting issue and I'm curios as to how this is
suppose to work. I am using Try...Catch...F inally statements for all
database connectivity in my ASP.NET 2.0 web application. I'm connecting
to IBM's Universe 10.2 using UniObjects.Net. Anyway, if the connection
errors, the Finally closes the connection. What I see happening is that
the function in the Finally statement either isn't running or doesn't
apply what its suppose to.

For example. Running Visual Studio 2005, I debug my web app and step
through a function that I am purposly erroring on. The session opens,
then a command errors out. In the Catch I am taking the ex.tostring and
sending it to a class function that I then email that to myself and then
send the user to a default error page using
server.transf er("page",false ). After that function runs, the debugger
sends me back to the calling function, finishes the Catch then fires the
Finally, which closes the session.

So my problem is that it appears that the database session is not
closing in the finally. I just moved the close session to the first line
in the Catch and it appears to close it properly...

Thanks!!

David Lozzi


May 7 '07 #8
Sure, below. This is how it was, now the UOCloseSession function is before
the EmailError function.

Thanks!!
Public Function GetProduct(ByVa l strPartNo As String) As Boolean
Dim uniSession As UniSession = Nothing

Try
uniSession = UOOpenSession()

Dim unicom As UniCommand = uniSession.Crea teUniCommand
Dim subtext As String = ""
Dim qry As String = "LIST PARTS.WEB WITH @ID = " & strPartNo & "
DESC IMAGE DL.NOTES DISC_FLG GIFT_WRAP SIZEFLAG1 EXPECTED.DATE PRICE
MEDLEY_PARTS MEDLEY_IMAGES MEDLEY_STYLE PERSINSTR RELPARTS1 RELDESC1
PROD.TYPE TOXML ELEMENTS"
unicom.Command = qry
unicom.Execute( )
subtext = Mid(unicom.Resp onse, InStr(unicom.Re sponse, "<"),
Len(unicom.Resp onse))
unicom.Dispose( )

........ stuff .......
Catch ex As Exception
EmailError("pro duct_details.vb ", "GetProduct ", ex.ToString,
"Partno=" & strPartNo)
Return False
Finally
UOCloseSession( uniSession)
End Try
Public Shared Function UOCloseSession( ByRef unisess As UniSession)
UniObjects.Clos eSession(unises s)
End Function
Public Shared Function EmailError(ByVa l strPage As String, ByVal
strFunction As String, ByVal strError As String, Optional ByVal strOther As
String = "", Optional ByVal bolSend As Boolean = True, Optional ByVal
intLogType As Integer = 1)
If ConfigurationMa nager.AppSettin gs("ErrorEmailN otifications") =
True Then
If Not strError.Contai ns("viewstate MAC") Then
Dim msg As New MailMessage

msg.From = New
MailAddress(Con figurationManag er.AppSettings( "ErrorEmailFrom "))

Dim toEmails() As String =
ConfigurationMa nager.AppSettin gs("ErrorEmailT o").Split("; ")
For i As Integer = 0 To toEmails.Length - 1
msg.To.Add(toEm ails(i))
Next

msg.Subject = "Error on " &
Current.Request .ServerVariable s("SERVER_NAME" ) & " Website"
msg.IsBodyHtml = True
msg.Body = "<font face=verdana size='2'><b>Err or on " &
Current.Request .ServerVariable s("SERVER_NAME" ) & " Website!</b><br>" & Now()
& "<BR><br>" & _
"<b>Page Name:</b" & strPage & "<br>" & _
"<b>URL:</b>" &
Current.Request .ServerVariable s("URL") & "<br>" & _
"<b>Functio n Name:</b" & strFunction & "<br><br>"
& _
"<b>Error Message:</b" & strError & "<br><br>"

Dim smtpClient As New SmtpClient
smtpClient.Host = ConfigurationMa nager.AppSettin gs("SMTPServer" )
smtpClient.Send (msg)
Current.Applica tion("ErrorEmai l") = Nothing
End If
Else
If Current.Applica tion("ErrorEmai l") Is Nothing Then
Dim msg As New MailMessage

msg.From = New
MailAddress(Con figurationManag er.AppSettings( "ErrorEmailFrom "))

Dim toEmails() As String =
ConfigurationMa nager.AppSettin gs("ErrorEmailT o").Split("; ")
For i As Integer = 0 To toEmails.Length - 1
msg.To.Add(toEm ails(i))
Next

msg.Subject = "Errors are disabled on " & WebsiteName & "
Website"
msg.IsBodyHtml = True
msg.Body = "<font face=verdana size='2'><b>Err or
notification is disabled on " & WebsiteName & " however an error occured!"

Dim smtpClient As New SmtpClient
smtpClient.Host =
ConfigurationMa nager.AppSettin gs("SMTPServer" )
smtpClient.Send (msg)
Current.Applica tion("ErrorEmai l") = "done"
End If
End If

If bolSend Then
Current.Server. Transfer("~/oops.aspx", False)
End If

Return True
End Function
"Alvin Bruney [MVP]" <some guy without an email addresswrote in message
news:eK******** ******@TK2MSFTN GP05.phx.gbl...
Can you post a short sample application that demonstrates the problem, i'd
like to take a closer look.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
"David Lozzi" <dl****@nospam. nospamwrote in message
news:C3******** *************** ***********@mic rosoft.com...
>>I ran a test using response.write( ) in each section of the try, and it
never reached the finally........

And the close works fine, it calls a simple
UniObjects.Clo seSession(unise ssion). And when I moved it to the first
line of the catch it works fine everytime. We had a trace running on the
DB end and it kept saying that the session was never closed, no other
errors.
"Alvin Bruney [MVP]" <some guy without an email addresswrote in message
news:O0******* *******@TK2MSFT NGP03.phx.gbl.. .
>>The two conditions really aren't related - i don't think. Finally blocks
always fire, there's an implicit guarantee for that. True there was a
bug in 1.1 that abrogated that guarantee, but it is fixed in 2.0. So the
problem would lie in the close code. It's quite possible that close is
erroring out. Put a trace from the db end to see if the close command is
funneling thru to the database engine.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professiona l VSTO 2005 - Wrox/Wiley
"David Lozzi" <dl****@nospam. nospamwrote in message
news:C8****** *************** *************@m icrosoft.com...
Howdy,

I ran into a very interesting issue and I'm curios as to how this is
suppose to work. I am using Try...Catch...F inally statements for all
database connectivity in my ASP.NET 2.0 web application. I'm connecting
to IBM's Universe 10.2 using UniObjects.Net. Anyway, if the connection
errors, the Finally closes the connection. What I see happening is that
the function in the Finally statement either isn't running or doesn't
apply what its suppose to.

For example. Running Visual Studio 2005, I debug my web app and step
through a function that I am purposly erroring on. The session opens,
then a command errors out. In the Catch I am taking the ex.tostring and
sending it to a class function that I then email that to myself and
then send the user to a default error page using
server.trans fer("page",fals e). After that function runs, the debugger
sends me back to the calling function, finishes the Catch then fires
the Finally, which closes the session.

So my problem is that it appears that the database session is not
closing in the finally. I just moved the close session to the first
line in the Catch and it appears to close it properly...

Thanks!!

David Lozzi


May 8 '07 #9

Have to be careful that the test is really testing what you think it
is. Testing with Response.Write( ) will test not only that the finally
is reached but also that the Response stream is still valid at that
point, which it isn't.

HTH,

Sam
------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
On Mon, 7 May 2007 15:55:18 -0400, "David Lozzi"
<dl****@nospam. nospamwrote:
>I ran a similar test instead used response.write( ) and it never reached the
finally....... .

"Samuel R. Neff" <sa********@nom ail.comwrote in message
news:dh******* *************** **********@4ax. com...
>>
Not true. The finally always runs.

protected void Page_Load(objec t sender, EventArgs e)
{
try
{
Log.Debug(this , "Throwing error...");
throw new Exception();
}
catch
{
Log.Debug(this , "Caught..") ;
Server.Transfe r("gateway.aspx ", false);
}
finally
{
Log.Debug(this , "Finally... ");
}
}
produced..

2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Throwing
error...
2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Caught..
2007-04-24 12:22:46.98 [2276] DEBUG ASP.default_asp x - Finally...

Sam
May 8 '07 #10

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

Similar topics

8
2737
by: Z D | last post by:
Hi, I was wondering what's the point of "finally" is in a try..catch..finally block? Isn't it the same to put the code that would be in the "finally" section right after the try/catch block? (ie, forget the finally block and just end the try/catch and put the code after the try/catch block). Or does the "finally" construct add some additional functionality?
11
3491
by: Pohihihi | last post by:
I was wondering what is the ill effect of using try catch in the code, both nested and simple big one. e.g. try { \\ whole app code goes here } catch (Exception ee) {}
23
3083
by: VB Programmer | last post by:
Variable scope doesn't make sense to me when it comes to Try Catch Finally. Example: In order to close/dispose a db connection you have to dim the connection outside of the Try Catch Finally block. But, I prefer to dim them "on the fly" only if needed (save as much resources as possible). A little further... I may wish to create a sqlcommand and datareader object ONLY if certain conditions are met. But, if I want to clean these up in the...
13
1584
by: Woody Splawn | last post by:
I have a try catch statement in a fucntion that is supposed to return a true or a false My code looks like this: Try mySqlConnection.Open() Dim Da1 As New SqlDataAdapter("Select JnlType, Description from JnlType", mySqlConnection) Dim Ds As New DataSet("X")
7
1728
by: Sean Kirkpatrick | last post by:
I got caught with my pants down the other day when trying to explain Try...Catch...Finally and things didn't work as I had assumed. Perhaps someone can explain to me the purpose of Finally. I've looked at several texts that I have and none of them address this specific point. If I call some method that throws an exception in my routine Foo, sub foo call bar <- throws an exception do something else <- never get here
32
6127
by: cj | last post by:
Another wish of mine. I wish there was a way in the Try Catch structure to say if there wasn't an error to do something. Like an else statement. Try Catch Else Finally. Also because I understand Finally runs whether an error was caught or not, I haven't found a use for finally yet.
6
7450
by: foolmelon | last post by:
If a childThread is in the middle of a catch block and handling an exception caught, the main thread calls childThread.Abort(). At that time a ThreadAbortException is thrown in the childThread. The question is: after the ThreadAbortException is thrown, does the childThread continue run the remaining code in the catch block?
0
9389
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
10149
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
10003
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
9943
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
9828
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
8825
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
6643
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
5271
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...
3
2797
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.