473,583 Members | 2,875 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Email using CDO

We sent out an email today to a list of subscribers from our database using
ASP and CDO. For some reason, many people received it twice, including
myself. I checked the database and there were do duplicate records and I
know for sure that I have no other email address forwarding email. I checked
my code and all seems ok. Perhaps someone can take a look at it and see if I
screwed up somewhere? It was sent to over 9,000 email addresses. When I sent
a test email from the database to 16 internall email addresses, everyone got
it just fine and only received one copy, as planned.

<%
rs.Open SQL, ConStr
rs.movefirst
do until rs.eof = true
strCount = strCount + 1
for i=1 to number
Set myMail = CreateObject("C DO.Message")
myMail.From = "eN*********@pa cer.org"
myMail.To = rs("EmailAddres s")
myMail.Subject = "PACER eNewsletter"
myMail.HTMLBody = content
myMail.Send
Set myMail = Nothing
next
rs.movenext
loop
rs.close
%>

Before I sent the email, I tested this code by replacing everything in the
for loop with a response.write strCount & " " & rs("EmailAddres s") just to
make sure it doesn't write any of the email addresses more than once.

Could this be an issue with the SMTP service on my server?

Thanks,

--
JayB
Jul 22 '05 #1
8 1902
Isn't it possible that someone ran the script twice or two people ran it
once?

Ray at work

"JayB" <je******@yahoo .com> wrote in message
news:c_******** ********@news01 .roc.ny...
We sent out an email today to a list of subscribers from our database
using ASP and CDO. For some reason, many people received it twice,
including myself. I checked the database and there were do duplicate
records and I know for sure that I have no other email address forwarding
email. I checked my code and all seems ok. Perhaps someone can take a look
at it and see if I screwed up somewhere? It was sent to over 9,000 email
addresses. When I sent a test email from the database to 16 internall
email addresses, everyone got it just fine and only received one copy, as
planned.

<%
rs.Open SQL, ConStr
rs.movefirst
do until rs.eof = true
strCount = strCount + 1
for i=1 to number
Set myMail = CreateObject("C DO.Message")
myMail.From = "eN*********@pa cer.org"
myMail.To = rs("EmailAddres s")
myMail.Subject = "PACER eNewsletter"
myMail.HTMLBody = content
myMail.Send
Set myMail = Nothing
next
rs.movenext
loop
rs.close
%>

Before I sent the email, I tested this code by replacing everything in the
for loop with a response.write strCount & " " & rs("EmailAddres s") just to
make sure it doesn't write any of the email addresses more than once.

Could this be an issue with the SMTP service on my server?

Thanks,

--
JayB

Jul 22 '05 #2
Well, where is the variable "number" defined and populated? Why do you have
two loops (do until rs.eof = true AND for i = 1 to number)? Are you meaning
to send more than copy of the newsletter to each recipient? This code looks
suspiciously like it could do exactly that.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"JayB" <je******@yahoo .com> wrote in message
news:c_******** ********@news01 .roc.ny...
We sent out an email today to a list of subscribers from our database using ASP and CDO. For some reason, many people received it twice, including
myself. I checked the database and there were do duplicate records and I
know for sure that I have no other email address forwarding email. I checked my code and all seems ok. Perhaps someone can take a look at it and see if I screwed up somewhere? It was sent to over 9,000 email addresses. When I sent a test email from the database to 16 internall email addresses, everyone got it just fine and only received one copy, as planned.

<%
rs.Open SQL, ConStr
rs.movefirst
do until rs.eof = true
strCount = strCount + 1
for i=1 to number
Set myMail = CreateObject("C DO.Message")
myMail.From = "eN*********@pa cer.org"
myMail.To = rs("EmailAddres s")
myMail.Subject = "PACER eNewsletter"
myMail.HTMLBody = content
myMail.Send
Set myMail = Nothing
next
rs.movenext
loop
rs.close
%>

Before I sent the email, I tested this code by replacing everything in the
for loop with a response.write strCount & " " & rs("EmailAddres s") just to
make sure it doesn't write any of the email addresses more than once.

Could this be an issue with the SMTP service on my server?

Thanks,

--
JayB

Jul 22 '05 #3
No. I'm the only one who has access to it. I wish that scenerio were
possible though ;-)

--
JayB

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:up******** ******@TK2MSFTN GP10.phx.gbl...
Isn't it possible that someone ran the script twice or two people ran it
once?

Ray at work

"JayB" <je******@yahoo .com> wrote in message
news:c_******** ********@news01 .roc.ny...
We sent out an email today to a list of subscribers from our database
using ASP and CDO. For some reason, many people received it twice,
including myself. I checked the database and there were do duplicate
records and I know for sure that I have no other email address forwarding
email. I checked my code and all seems ok. Perhaps someone can take a
look at it and see if I screwed up somewhere? It was sent to over 9,000
email addresses. When I sent a test email from the database to 16
internall email addresses, everyone got it just fine and only received
one copy, as planned.

<%
rs.Open SQL, ConStr
rs.movefirst
do until rs.eof = true
strCount = strCount + 1
for i=1 to number
Set myMail = CreateObject("C DO.Message")
myMail.From = "eN*********@pa cer.org"
myMail.To = rs("EmailAddres s")
myMail.Subject = "PACER eNewsletter"
myMail.HTMLBody = content
myMail.Send
Set myMail = Nothing
next
rs.movenext
loop
rs.close
%>

Before I sent the email, I tested this code by replacing everything in
the for loop with a response.write strCount & " " & rs("EmailAddres s")
just to make sure it doesn't write any of the email addresses more than
once.

Could this be an issue with the SMTP service on my server?

Thanks,

--
JayB


Jul 22 '05 #4
Sorry, I forgot that part.
After I dim the variable i, I set it to 1. I put in the for loop this way to
ensure that it only sent out once per record (so I thought). I did send it
to 16 test email accounts from a test table using the same code and it
worked great. I also took the CDO code out and replaced it with a
response.write in an ordered html list to compare and each email address
appeared only once.

--
JayB
"Aaron [SQL Server MVP]" <te*****@dnartr eb.noraa> wrote in message
news:up******** ******@tk2msftn gp13.phx.gbl...
Well, where is the variable "number" defined and populated? Why do you
have
two loops (do until rs.eof = true AND for i = 1 to number)? Are you
meaning
to send more than copy of the newsletter to each recipient? This code
looks
suspiciously like it could do exactly that.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"JayB" <je******@yahoo .com> wrote in message
news:c_******** ********@news01 .roc.ny...
We sent out an email today to a list of subscribers from our database

using
ASP and CDO. For some reason, many people received it twice, including
myself. I checked the database and there were do duplicate records and I
know for sure that I have no other email address forwarding email. I

checked
my code and all seems ok. Perhaps someone can take a look at it and see
if

I
screwed up somewhere? It was sent to over 9,000 email addresses. When I

sent
a test email from the database to 16 internall email addresses, everyone

got
it just fine and only received one copy, as planned.

<%
rs.Open SQL, ConStr
rs.movefirst
do until rs.eof = true
strCount = strCount + 1
for i=1 to number
Set myMail = CreateObject("C DO.Message")
myMail.From = "eN*********@pa cer.org"
myMail.To = rs("EmailAddres s")
myMail.Subject = "PACER eNewsletter"
myMail.HTMLBody = content
myMail.Send
Set myMail = Nothing
next
rs.movenext
loop
rs.close
%>

Before I sent the email, I tested this code by replacing everything in
the
for loop with a response.write strCount & " " & rs("EmailAddres s") just
to
make sure it doesn't write any of the email addresses more than once.

Could this be an issue with the SMTP service on my server?

Thanks,

--
JayB


Jul 22 '05 #5
Yes, remove the unneccessary loop

Jeff

"JayB" <je****@qwest.n et> wrote in message
news:dz******** *********@news0 2.roc.ny...
Sorry, I forgot that part.
After I dim the variable i, I set it to 1. I put in the for loop this way to ensure that it only sent out once per record (so I thought). I did send it
to 16 test email accounts from a test table using the same code and it
worked great. I also took the CDO code out and replaced it with a
response.write in an ordered html list to compare and each email address
appeared only once.

--
JayB
"Aaron [SQL Server MVP]" <te*****@dnartr eb.noraa> wrote in message
news:up******** ******@tk2msftn gp13.phx.gbl...
Well, where is the variable "number" defined and populated? Why do you
have
two loops (do until rs.eof = true AND for i = 1 to number)? Are you
meaning
to send more than copy of the newsletter to each recipient? This code
looks
suspiciously like it could do exactly that.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"JayB" <je******@yahoo .com> wrote in message
news:c_******** ********@news01 .roc.ny...
We sent out an email today to a list of subscribers from our database

using
ASP and CDO. For some reason, many people received it twice, including
myself. I checked the database and there were do duplicate records and I know for sure that I have no other email address forwarding email. I

checked
my code and all seems ok. Perhaps someone can take a look at it and see
if

I
screwed up somewhere? It was sent to over 9,000 email addresses. When I

sent
a test email from the database to 16 internall email addresses,
everyone got
it just fine and only received one copy, as planned.

<%
rs.Open SQL, ConStr
rs.movefirst
do until rs.eof = true
strCount = strCount + 1
for i=1 to number
Set myMail = CreateObject("C DO.Message")
myMail.From = "eN*********@pa cer.org"
myMail.To = rs("EmailAddres s")
myMail.Subject = "PACER eNewsletter"
myMail.HTMLBody = content
myMail.Send
Set myMail = Nothing
next
rs.movenext
loop
rs.close
%>

Before I sent the email, I tested this code by replacing everything in
the
for loop with a response.write strCount & " " & rs("EmailAddres s") just
to
make sure it doesn't write any of the email addresses more than once.

Could this be an issue with the SMTP service on my server?

Thanks,

--
JayB



Jul 22 '05 #6
Jeff,

I'm not sure how this solves the problem. When I tested with 16 email
addresses, it worked fine. When I tested by writing each of the 9800 email
addresses to the browser instead of sending the email to each, it worked
fine. If the extra loop was the problem, these tests would have produced
duplicated results.

Is there a chance that it could be an issue with the server? There's 1.5GB
of RAM in it and each email message was only 11KB. Perhaps there's an issue
with the SMTP service?

--
JayB

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Yes, remove the unneccessary loop

Jeff

"JayB" <je****@qwest.n et> wrote in message
news:dz******** *********@news0 2.roc.ny...
Sorry, I forgot that part.
After I dim the variable i, I set it to 1. I put in the for loop this way

to
ensure that it only sent out once per record (so I thought). I did send
it
to 16 test email accounts from a test table using the same code and it
worked great. I also took the CDO code out and replaced it with a
response.write in an ordered html list to compare and each email address
appeared only once.

--
JayB
"Aaron [SQL Server MVP]" <te*****@dnartr eb.noraa> wrote in message
news:up******** ******@tk2msftn gp13.phx.gbl...
> Well, where is the variable "number" defined and populated? Why do you
> have
> two loops (do until rs.eof = true AND for i = 1 to number)? Are you
> meaning
> to send more than copy of the newsletter to each recipient? This code
> looks
> suspiciously like it could do exactly that.
>
> --
> http://www.aspfaq.com/
> (Reverse address to reply.)
>
>
>
>
> "JayB" <je******@yahoo .com> wrote in message
> news:c_******** ********@news01 .roc.ny...
>> We sent out an email today to a list of subscribers from our database
> using
>> ASP and CDO. For some reason, many people received it twice, including
>> myself. I checked the database and there were do duplicate records and I >> know for sure that I have no other email address forwarding email. I
> checked
>> my code and all seems ok. Perhaps someone can take a look at it and
>> see
>> if
> I
>> screwed up somewhere? It was sent to over 9,000 email addresses. When
>> I
> sent
>> a test email from the database to 16 internall email addresses, everyone > got
>> it just fine and only received one copy, as planned.
>>
>> <%
>> rs.Open SQL, ConStr
>> rs.movefirst
>> do until rs.eof = true
>> strCount = strCount + 1
>> for i=1 to number
>> Set myMail = CreateObject("C DO.Message")
>> myMail.From = "eN*********@pa cer.org"
>> myMail.To = rs("EmailAddres s")
>> myMail.Subject = "PACER eNewsletter"
>> myMail.HTMLBody = content
>> myMail.Send
>> Set myMail = Nothing
>> next
>> rs.movenext
>> loop
>> rs.close
>> %>
>>
>> Before I sent the email, I tested this code by replacing everything in
>> the
>> for loop with a response.write strCount & " " & rs("EmailAddres s")
>> just
>> to
>> make sure it doesn't write any of the email addresses more than once.
>>
>> Could this be an issue with the SMTP service on my server?
>>
>> Thanks,
>>
>> --
>> JayB
>>
>>
>
>



Jul 22 '05 #7
Perhaps Server.CreateOb ject? And create it only once, and reuse it? And no
need for movefirst for a default forward only cursor.

Just suggesting ideas. Yes, it could be an SMTP issue..perhaps it times out
on a message, and tries again. Not sure. First, create solid code.

Jeff

"JayB" <je******@yahoo .com> wrote in message
news:BE******** ********@news01 .roc.ny...
Jeff,

I'm not sure how this solves the problem. When I tested with 16 email
addresses, it worked fine. When I tested by writing each of the 9800 email
addresses to the browser instead of sending the email to each, it worked
fine. If the extra loop was the problem, these tests would have produced
duplicated results.

Is there a chance that it could be an issue with the server? There's 1.5GB
of RAM in it and each email message was only 11KB. Perhaps there's an issue with the SMTP service?

--
JayB

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Yes, remove the unneccessary loop

Jeff

"JayB" <je****@qwest.n et> wrote in message
news:dz******** *********@news0 2.roc.ny...
Sorry, I forgot that part.
After I dim the variable i, I set it to 1. I put in the for loop this way
to
ensure that it only sent out once per record (so I thought). I did send
it
to 16 test email accounts from a test table using the same code and it
worked great. I also took the CDO code out and replaced it with a
response.write in an ordered html list to compare and each email
address appeared only once.

--
JayB
"Aaron [SQL Server MVP]" <te*****@dnartr eb.noraa> wrote in message
news:up******** ******@tk2msftn gp13.phx.gbl...
> Well, where is the variable "number" defined and populated? Why do you > have
> two loops (do until rs.eof = true AND for i = 1 to number)? Are you
> meaning
> to send more than copy of the newsletter to each recipient? This code > looks
> suspiciously like it could do exactly that.
>
> --
> http://www.aspfaq.com/
> (Reverse address to reply.)
>
>
>
>
> "JayB" <je******@yahoo .com> wrote in message
> news:c_******** ********@news01 .roc.ny...
>> We sent out an email today to a list of subscribers from our database > using
>> ASP and CDO. For some reason, many people received it twice, including >> myself. I checked the database and there were do duplicate records and I
>> know for sure that I have no other email address forwarding email. I
> checked
>> my code and all seems ok. Perhaps someone can take a look at it and
>> see
>> if
> I
>> screwed up somewhere? It was sent to over 9,000 email addresses.

When >> I
> sent
>> a test email from the database to 16 internall email addresses,

everyone
> got
>> it just fine and only received one copy, as planned.
>>
>> <%
>> rs.Open SQL, ConStr
>> rs.movefirst
>> do until rs.eof = true
>> strCount = strCount + 1
>> for i=1 to number
>> Set myMail = CreateObject("C DO.Message")
>> myMail.From = "eN*********@pa cer.org"
>> myMail.To = rs("EmailAddres s")
>> myMail.Subject = "PACER eNewsletter"
>> myMail.HTMLBody = content
>> myMail.Send
>> Set myMail = Nothing
>> next
>> rs.movenext
>> loop
>> rs.close
>> %>
>>
>> Before I sent the email, I tested this code by replacing everything in >> the
>> for loop with a response.write strCount & " " & rs("EmailAddres s")
>> just
>> to
>> make sure it doesn't write any of the email addresses more than once. >>
>> Could this be an issue with the SMTP service on my server?
>>
>> Thanks,
>>
>> --
>> JayB
>>
>>
>
>



Jul 22 '05 #8
I cleaned up the code big time. Also I found the connection timeout setting
on the SMTP server set to 10 minutes. After looking at the log files it
looks as though most people who received their email twice received the
second one around 10 minutes after their first one. I extended this time and
will see how it works.

Thanks!

--
JayB

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:OQ******** ******@TK2MSFTN GP15.phx.gbl...
Perhaps Server.CreateOb ject? And create it only once, and reuse it? And
no
need for movefirst for a default forward only cursor.

Just suggesting ideas. Yes, it could be an SMTP issue..perhaps it times
out
on a message, and tries again. Not sure. First, create solid code.

Jeff

"JayB" <je******@yahoo .com> wrote in message
news:BE******** ********@news01 .roc.ny...
Jeff,

I'm not sure how this solves the problem. When I tested with 16 email
addresses, it worked fine. When I tested by writing each of the 9800
email
addresses to the browser instead of sending the email to each, it worked
fine. If the extra loop was the problem, these tests would have produced
duplicated results.

Is there a chance that it could be an issue with the server? There's
1.5GB
of RAM in it and each email message was only 11KB. Perhaps there's an

issue
with the SMTP service?

--
JayB

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
> Yes, remove the unneccessary loop
>
> Jeff
>
> "JayB" <je****@qwest.n et> wrote in message
> news:dz******** *********@news0 2.roc.ny...
>> Sorry, I forgot that part.
>> After I dim the variable i, I set it to 1. I put in the for loop this way > to
>> ensure that it only sent out once per record (so I thought). I did
>> send
>> it
>> to 16 test email accounts from a test table using the same code and it
>> worked great. I also took the CDO code out and replaced it with a
>> response.write in an ordered html list to compare and each email address >> appeared only once.
>>
>> --
>> JayB
>>
>>
>> "Aaron [SQL Server MVP]" <te*****@dnartr eb.noraa> wrote in message
>> news:up******** ******@tk2msftn gp13.phx.gbl...
>> > Well, where is the variable "number" defined and populated? Why do you >> > have
>> > two loops (do until rs.eof = true AND for i = 1 to number)? Are you
>> > meaning
>> > to send more than copy of the newsletter to each recipient? This code >> > looks
>> > suspiciously like it could do exactly that.
>> >
>> > --
>> > http://www.aspfaq.com/
>> > (Reverse address to reply.)
>> >
>> >
>> >
>> >
>> > "JayB" <je******@yahoo .com> wrote in message
>> > news:c_******** ********@news01 .roc.ny...
>> >> We sent out an email today to a list of subscribers from our database >> > using
>> >> ASP and CDO. For some reason, many people received it twice, including >> >> myself. I checked the database and there were do duplicate records and > I
>> >> know for sure that I have no other email address forwarding email.
>> >> I
>> > checked
>> >> my code and all seems ok. Perhaps someone can take a look at it and
>> >> see
>> >> if
>> > I
>> >> screwed up somewhere? It was sent to over 9,000 email addresses. When >> >> I
>> > sent
>> >> a test email from the database to 16 internall email addresses,
> everyone
>> > got
>> >> it just fine and only received one copy, as planned.
>> >>
>> >> <%
>> >> rs.Open SQL, ConStr
>> >> rs.movefirst
>> >> do until rs.eof = true
>> >> strCount = strCount + 1
>> >> for i=1 to number
>> >> Set myMail = CreateObject("C DO.Message")
>> >> myMail.From = "eN*********@pa cer.org"
>> >> myMail.To = rs("EmailAddres s")
>> >> myMail.Subject = "PACER eNewsletter"
>> >> myMail.HTMLBody = content
>> >> myMail.Send
>> >> Set myMail = Nothing
>> >> next
>> >> rs.movenext
>> >> loop
>> >> rs.close
>> >> %>
>> >>
>> >> Before I sent the email, I tested this code by replacing everything in >> >> the
>> >> for loop with a response.write strCount & " " & rs("EmailAddres s")
>> >> just
>> >> to
>> >> make sure it doesn't write any of the email addresses more than once. >> >>
>> >> Could this be an issue with the SMTP service on my server?
>> >>
>> >> Thanks,
>> >>
>> >> --
>> >> JayB
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Jul 22 '05 #9

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

Similar topics

12
8766
by: Chuck Anderson | last post by:
Can anyone point me in the right direction? I want to use Php to automate confirmation of someone joining an email list by them replying to an email (so they don't have to have a browser?). I will probably use a hyperlink with a unique ID, but I also want to know how to go about reading from a mailbox with Php so I can use an email reply...
7
2201
by: BenignVanilla | last post by:
My ISP provides a web based email client, but it is not brandable and the features are not that extensive. I'd like to build my own. Has anyone done this, or is anyone aware of any tools out there to do this? BV. www.iheartmypond.com
88
12403
by: Mike | last post by:
Is there a way to determine what a user's default email client is? I read a post from 3 years ago that said no. I guess I'm hoping something has come along since then.
117
11790
by: Steevo | last post by:
Any suggestions as to the best programs for cloaking email addresses? Many thanks -- Steevo
9
4296
by: Bob Jones | last post by:
We have developed a commercial ASP.net application (personal nutrition management and tracking); we want to send smtp email from within it. For our development box, we use WinXP Pro, IIS 5.5, VisualStudio2002, VB as programing language. Our test/development version of the web app as hosted on our "localhost" works fine; our "Default SMTP...
3
5404
by: Frank | last post by:
I am attempting to develop a solution where I handle bounced e-mails. I wish to field all bounced emails in a custom email account such a bounced@mycompany.com From the aricle at http://www.systemwebmail.com/faq/2.7.aspx, I gather I could use: mail.Headers.Add( "Reply-To", "alternate_email@mycompany.com" ); When I test this from a test...
9
77418
by: Mahernoz | last post by:
Can i send an email from JavaScript? Is it possible? If yes please the code to send email using javascript...
4
17448
Frinavale
by: Frinavale | last post by:
Introduction Many .NET applications will require an email be sent out for various reasons. This article will give a quick examples on how to send an email using VB.NET. The examples given can easily be translated into C#.NET. Storing Email Credentials If you are developing a web application the best place to store your email credentials is...
3
7235
by: anu b | last post by:
Hii I am using System.net.mail for sending email... i need to send a webpage with its html content as my email body .....for that i used mail.Isbodyhtml as true...but it is not working for me so pls help me....
0
7888
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...
0
8159
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. ...
0
8185
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...
0
6571
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...
1
5689
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...
0
5366
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...
0
3811
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...
1
2317
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
0
1147
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...

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.