473,804 Members | 2,536 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Paypal+ipn and Asp (Urgent)

Hi

I am having a payment website which needs to be integrated, i am having the
following code which is not working fine.

I am having the following script and my notifyurl is not working i don't
know why can guys please help me up

<%
if SIGNUP_PRICE > 0 then
%>
<form name="_xclick"
action="http://www.paypal.com/cgi-bin/webscr" method="post">
<%
else
%>
<form action="admin_p aypal_confirmat ion.asp" method="post">

<%
end if
%>

<input type="hidden" name="cmd" value="_xclick" >
<input type="hidden" name="business" va********@a.co m>
<input type="hidden" name="currency_ code" value="USD">
<input type="hidden" name="item_name " value="ADMIN/RE-SELLER Signup
Fees">
<input type="hidden" name="item_numb er" value=1>
<input type="hidden" name="amount" value=11>
<input type="hidden" name="no_shippi ng" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="rm" value="2">

<input type="hidden" name="return" value="http://
mywebsite.com/login.asp?msg=Y ou have Successfully Paid Signup Fee.">
<input type="hidden" name="cancel_re turn"
value="http://mywebsite.com/login.asp?msg=Y ou have canceled the Payment
Process.">
<input type="hidden" name="notify_ur l"
value="http://mywebsite.com/admin_paypal_co nfirmation.asp" >
admin_paypal_co nfirmation.asp
=============== ===========
Dim Item_name, Item_number, Payment_status, Payment_amount
Dim Txn_id, Receiver_email, Payer_email
Dim objHttp, str
str = Request.Form & "&cmd=_noti fy-validate"
set objHttp = Server.CreateOb ject("Msxml2.Se rverXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.setRequ estHeader "Content-type", "applicatio n/x-www-form-urlencoded"
objHttp.Send str

Item_name = Request.Form("i tem_name")
Item_number = Request.Form("i tem_number")
Payment_status = Request.Form("p ayment_status")
Payment_amount = Request.Form("m c_gross")
Payment_currenc y = Request.Form("m c_currency")
Txn_id = Request.Form("t xn_id")
Receiver_email = Request.Form("r eceiver_email")
Payer_email = Request.Form("p ayer_email")
PhysicalPath=se rver.MapPath("/")&"\mywebsite\ testpaypal.txt"
dim fs,fname
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fname=fs.Create TextFile(Physic alPath)
fname.WriteLine objHttp.status
fname.WriteLine objHttp.respons eText
fname.Close
set fname=nothing
set fs=nothing
if (objHttp.status <> 200 ) then

elseif (objHttp.respon seText = "VERIFIED") then
ABC()

'This function will do the database operations
elseif (objHttp.respon seText = "INVALID") then
else
end if
set objHttp = nothing
In the admin_paypal_co nfirmation.asp i added a filesystemobjec t so that i
could see whether the data or is this file being called.
To my surprise i find that it is not created also.If i run this file alone
directly it will create the file.but thru paypal its not creating

Any help will be of great use
Regards
Vinod

Jul 22 '05 #1
5 4776
Your question is a little fuzzy. Are you saying that paypal rejects the
request when you send it through xmlhttp but not when it is a direct post?

If so, I would create a test script to call instead of paypal and just log
request.form. Then see if it is different between the two methods.

Also, is paypal expecting any headers (like http-referer) or cookies?

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Vinod" <vi***@erivasys tems.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Hi

I am having a payment website which needs to be integrated, i am having
the
following code which is not working fine.

I am having the following script and my notifyurl is not working i don't
know why can guys please help me up

<%
if SIGNUP_PRICE > 0 then
%>
<form name="_xclick"
action="http://www.paypal.com/cgi-bin/webscr" method="post">
<%
else
%>
<form action="admin_p aypal_confirmat ion.asp" method="post">

<%
end if
%>

<input type="hidden" name="cmd" value="_xclick" >
<input type="hidden" name="business" va********@a.co m>
<input type="hidden" name="currency_ code" value="USD">
<input type="hidden" name="item_name " value="ADMIN/RE-SELLER Signup
Fees">
<input type="hidden" name="item_numb er" value=1>
<input type="hidden" name="amount" value=11>
<input type="hidden" name="no_shippi ng" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="rm" value="2">

<input type="hidden" name="return" value="http://
mywebsite.com/login.asp?msg=Y ou have Successfully Paid Signup Fee.">
<input type="hidden" name="cancel_re turn"
value="http://mywebsite.com/login.asp?msg=Y ou have canceled the Payment
Process.">
<input type="hidden" name="notify_ur l"
value="http://mywebsite.com/admin_paypal_co nfirmation.asp" >
admin_paypal_co nfirmation.asp
=============== ===========
Dim Item_name, Item_number, Payment_status, Payment_amount
Dim Txn_id, Receiver_email, Payer_email
Dim objHttp, str
str = Request.Form & "&cmd=_noti fy-validate"
set objHttp = Server.CreateOb ject("Msxml2.Se rverXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.setRequ estHeader "Content-type",
"applicatio n/x-www-form-urlencoded"
objHttp.Send str

Item_name = Request.Form("i tem_name")
Item_number = Request.Form("i tem_number")
Payment_status = Request.Form("p ayment_status")
Payment_amount = Request.Form("m c_gross")
Payment_currenc y = Request.Form("m c_currency")
Txn_id = Request.Form("t xn_id")
Receiver_email = Request.Form("r eceiver_email")
Payer_email = Request.Form("p ayer_email")
PhysicalPath=se rver.MapPath("/")&"\mywebsite\ testpaypal.txt"
dim fs,fname
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fname=fs.Create TextFile(Physic alPath)
fname.WriteLine objHttp.status
fname.WriteLine objHttp.respons eText
fname.Close
set fname=nothing
set fs=nothing
if (objHttp.status <> 200 ) then

elseif (objHttp.respon seText = "VERIFIED") then
ABC()

'This function will do the database operations
elseif (objHttp.respon seText = "INVALID") then
else
end if
set objHttp = nothing
In the admin_paypal_co nfirmation.asp i added a filesystemobjec t so that i
could see whether the data or is this file being called.
To my surprise i find that it is not created also.If i run this file alone
directly it will create the file.but thru paypal its not creating

Any help will be of great use
Regards
Vinod

Jul 22 '05 #2
Hi,
I am saying it not even coming to that page.

Regards
Vinod
"Mark Schupp" <no******@email .net> wrote in message
news:Og******** ******@TK2MSFTN GP15.phx.gbl...
Your question is a little fuzzy. Are you saying that paypal rejects the
request when you send it through xmlhttp but not when it is a direct post?

If so, I would create a test script to call instead of paypal and just log
request.form. Then see if it is different between the two methods.

Also, is paypal expecting any headers (like http-referer) or cookies?

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Vinod" <vi***@erivasys tems.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Hi

I am having a payment website which needs to be integrated, i am having
the
following code which is not working fine.

I am having the following script and my notifyurl is not working i don't
know why can guys please help me up

<%
if SIGNUP_PRICE > 0 then
%>
<form name="_xclick"
action="http://www.paypal.com/cgi-bin/webscr" method="post">
<%
else
%>
<form action="admin_p aypal_confirmat ion.asp" method="post">

<%
end if
%>

<input type="hidden" name="cmd" value="_xclick" >
<input type="hidden" name="business" va********@a.co m>
<input type="hidden" name="currency_ code" value="USD">
<input type="hidden" name="item_name " value="ADMIN/RE-SELLER Signup
Fees">
<input type="hidden" name="item_numb er" value=1>
<input type="hidden" name="amount" value=11>
<input type="hidden" name="no_shippi ng" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="rm" value="2">

<input type="hidden" name="return" value="http://
mywebsite.com/login.asp?msg=Y ou have Successfully Paid Signup Fee.">
<input type="hidden" name="cancel_re turn"
value="http://mywebsite.com/login.asp?msg=Y ou have canceled the Payment
Process.">
<input type="hidden" name="notify_ur l"
value="http://mywebsite.com/admin_paypal_co nfirmation.asp" >
admin_paypal_co nfirmation.asp
=============== ===========
Dim Item_name, Item_number, Payment_status, Payment_amount
Dim Txn_id, Receiver_email, Payer_email
Dim objHttp, str
str = Request.Form & "&cmd=_noti fy-validate"
set objHttp = Server.CreateOb ject("Msxml2.Se rverXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.setRequ estHeader "Content-type",
"applicatio n/x-www-form-urlencoded"
objHttp.Send str

Item_name = Request.Form("i tem_name")
Item_number = Request.Form("i tem_number")
Payment_status = Request.Form("p ayment_status")
Payment_amount = Request.Form("m c_gross")
Payment_currenc y = Request.Form("m c_currency")
Txn_id = Request.Form("t xn_id")
Receiver_email = Request.Form("r eceiver_email")
Payer_email = Request.Form("p ayer_email")
PhysicalPath=se rver.MapPath("/")&"\mywebsite\ testpaypal.txt"
dim fs,fname
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fname=fs.Create TextFile(Physic alPath)
fname.WriteLine objHttp.status
fname.WriteLine objHttp.respons eText
fname.Close
set fname=nothing
set fs=nothing
if (objHttp.status <> 200 ) then

elseif (objHttp.respon seText = "VERIFIED") then
ABC()

'This function will do the database operations
elseif (objHttp.respon seText = "INVALID") then
else
end if
set objHttp = nothing
In the admin_paypal_co nfirmation.asp i added a filesystemobjec t so that i could see whether the data or is this file being called.
To my surprise i find that it is not created also.If i run this file alone directly it will create the file.but thru paypal its not creating

Any help will be of great use
Regards
Vinod


Jul 22 '05 #3
Are you testing against the PayPal Sandbox?
Is your payment transaction completing?
Is your return URL being called?

"Vinod" <vi***@erivasys tems.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Hi

I am having a payment website which needs to be integrated, i am having the following code which is not working fine.

I am having the following script and my notifyurl is not working i don't
know why can guys please help me up

<%
if SIGNUP_PRICE > 0 then
%>
<form name="_xclick"
action="http://www.paypal.com/cgi-bin/webscr" method="post">
<%
else
%>
<form action="admin_p aypal_confirmat ion.asp" method="post">

<%
end if
%>

<input type="hidden" name="cmd" value="_xclick" >
<input type="hidden" name="business" va********@a.co m>
<input type="hidden" name="currency_ code" value="USD">
<input type="hidden" name="item_name " value="ADMIN/RE-SELLER Signup
Fees">
<input type="hidden" name="item_numb er" value=1>
<input type="hidden" name="amount" value=11>
<input type="hidden" name="no_shippi ng" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="rm" value="2">

<input type="hidden" name="return" value="http://
mywebsite.com/login.asp?msg=Y ou have Successfully Paid Signup Fee.">
<input type="hidden" name="cancel_re turn"
value="http://mywebsite.com/login.asp?msg=Y ou have canceled the Payment
Process.">
<input type="hidden" name="notify_ur l"
value="http://mywebsite.com/admin_paypal_co nfirmation.asp" >
admin_paypal_co nfirmation.asp
=============== ===========
Dim Item_name, Item_number, Payment_status, Payment_amount
Dim Txn_id, Receiver_email, Payer_email
Dim objHttp, str
str = Request.Form & "&cmd=_noti fy-validate"
set objHttp = Server.CreateOb ject("Msxml2.Se rverXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.setRequ estHeader "Content-type", "applicatio n/x-www-form-urlencoded" objHttp.Send str

Item_name = Request.Form("i tem_name")
Item_number = Request.Form("i tem_number")
Payment_status = Request.Form("p ayment_status")
Payment_amount = Request.Form("m c_gross")
Payment_currenc y = Request.Form("m c_currency")
Txn_id = Request.Form("t xn_id")
Receiver_email = Request.Form("r eceiver_email")
Payer_email = Request.Form("p ayer_email")
PhysicalPath=se rver.MapPath("/")&"\mywebsite\ testpaypal.txt"
dim fs,fname
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fname=fs.Create TextFile(Physic alPath)
fname.WriteLine objHttp.status
fname.WriteLine objHttp.respons eText
fname.Close
set fname=nothing
set fs=nothing
if (objHttp.status <> 200 ) then

elseif (objHttp.respon seText = "VERIFIED") then
ABC()

'This function will do the database operations
elseif (objHttp.respon seText = "INVALID") then
else
end if
set objHttp = nothing
In the admin_paypal_co nfirmation.asp i added a filesystemobjec t so that i
could see whether the data or is this file being called.
To my surprise i find that it is not created also.If i run this file alone
directly it will create the file.but thru paypal its not creating

Any help will be of great use
Regards
Vinod

Jul 22 '05 #4
I am testing it in live paypal.
My return URL is being called too
and my payment transcation is also getting completed.
But the path to my notify url has a update statement which should be done in
the paypal its not being processed.

regards
vinod
"Jonathan Dodds" <NO_REPLY> wrote in message
news:ek******** ******@TK2MSFTN GP14.phx.gbl...
Are you testing against the PayPal Sandbox?
Is your payment transaction completing?
Is your return URL being called?

"Vinod" <vi***@erivasys tems.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Hi

I am having a payment website which needs to be integrated, i am having

the
following code which is not working fine.

I am having the following script and my notifyurl is not working i don't
know why can guys please help me up

<%
if SIGNUP_PRICE > 0 then
%>
<form name="_xclick"
action="http://www.paypal.com/cgi-bin/webscr" method="post">
<%
else
%>
<form action="admin_p aypal_confirmat ion.asp" method="post">

<%
end if
%>

<input type="hidden" name="cmd" value="_xclick" >
<input type="hidden" name="business" va********@a.co m>
<input type="hidden" name="currency_ code" value="USD">
<input type="hidden" name="item_name " value="ADMIN/RE-SELLER Signup
Fees">
<input type="hidden" name="item_numb er" value=1>
<input type="hidden" name="amount" value=11>
<input type="hidden" name="no_shippi ng" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="rm" value="2">

<input type="hidden" name="return" value="http://
mywebsite.com/login.asp?msg=Y ou have Successfully Paid Signup Fee.">
<input type="hidden" name="cancel_re turn"
value="http://mywebsite.com/login.asp?msg=Y ou have canceled the Payment
Process.">
<input type="hidden" name="notify_ur l"
value="http://mywebsite.com/admin_paypal_co nfirmation.asp" >
admin_paypal_co nfirmation.asp
=============== ===========
Dim Item_name, Item_number, Payment_status, Payment_amount
Dim Txn_id, Receiver_email, Payer_email
Dim objHttp, str
str = Request.Form & "&cmd=_noti fy-validate"
set objHttp = Server.CreateOb ject("Msxml2.Se rverXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.setRequ estHeader "Content-type",

"applicatio n/x-www-form-urlencoded"
objHttp.Send str

Item_name = Request.Form("i tem_name")
Item_number = Request.Form("i tem_number")
Payment_status = Request.Form("p ayment_status")
Payment_amount = Request.Form("m c_gross")
Payment_currenc y = Request.Form("m c_currency")
Txn_id = Request.Form("t xn_id")
Receiver_email = Request.Form("r eceiver_email")
Payer_email = Request.Form("p ayer_email")
PhysicalPath=se rver.MapPath("/")&"\mywebsite\ testpaypal.txt"
dim fs,fname
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fname=fs.Create TextFile(Physic alPath)
fname.WriteLine objHttp.status
fname.WriteLine objHttp.respons eText
fname.Close
set fname=nothing
set fs=nothing
if (objHttp.status <> 200 ) then

elseif (objHttp.respon seText = "VERIFIED") then
ABC()

'This function will do the database operations
elseif (objHttp.respon seText = "INVALID") then
else
end if
set objHttp = nothing
In the admin_paypal_co nfirmation.asp i added a filesystemobjec t so that i could see whether the data or is this file being called.
To my surprise i find that it is not created also.If i run this file alone directly it will create the file.but thru paypal its not creating

Any help will be of great use
Regards
Vinod


Jul 22 '05 #5
http://www.cjwsoft.com/paypal_ipn_fulfill.asp

"Vinod" <vi***@erivasys tems.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Hi

I am having a payment website which needs to be integrated, i am having
the
following code which is not working fine.

I am having the following script and my notifyurl is not working i don't
know why can guys please help me up

<%
if SIGNUP_PRICE > 0 then
%>
<form name="_xclick"
action="http://www.paypal.com/cgi-bin/webscr" method="post">
<%
else
%>
<form action="admin_p aypal_confirmat ion.asp" method="post">

<%
end if
%>

<input type="hidden" name="cmd" value="_xclick" >
<input type="hidden" name="business" va********@a.co m>
<input type="hidden" name="currency_ code" value="USD">
<input type="hidden" name="item_name " value="ADMIN/RE-SELLER Signup
Fees">
<input type="hidden" name="item_numb er" value=1>
<input type="hidden" name="amount" value=11>
<input type="hidden" name="no_shippi ng" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="rm" value="2">

<input type="hidden" name="return" value="http://
mywebsite.com/login.asp?msg=Y ou have Successfully Paid Signup Fee.">
<input type="hidden" name="cancel_re turn"
value="http://mywebsite.com/login.asp?msg=Y ou have canceled the Payment
Process.">
<input type="hidden" name="notify_ur l"
value="http://mywebsite.com/admin_paypal_co nfirmation.asp" >
admin_paypal_co nfirmation.asp
=============== ===========
Dim Item_name, Item_number, Payment_status, Payment_amount
Dim Txn_id, Receiver_email, Payer_email
Dim objHttp, str
str = Request.Form & "&cmd=_noti fy-validate"
set objHttp = Server.CreateOb ject("Msxml2.Se rverXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.setRequ estHeader "Content-type",
"applicatio n/x-www-form-urlencoded"
objHttp.Send str

Item_name = Request.Form("i tem_name")
Item_number = Request.Form("i tem_number")
Payment_status = Request.Form("p ayment_status")
Payment_amount = Request.Form("m c_gross")
Payment_currenc y = Request.Form("m c_currency")
Txn_id = Request.Form("t xn_id")
Receiver_email = Request.Form("r eceiver_email")
Payer_email = Request.Form("p ayer_email")
PhysicalPath=se rver.MapPath("/")&"\mywebsite\ testpaypal.txt"
dim fs,fname
set fs=Server.Creat eObject("Script ing.FileSystemO bject")
set fname=fs.Create TextFile(Physic alPath)
fname.WriteLine objHttp.status
fname.WriteLine objHttp.respons eText
fname.Close
set fname=nothing
set fs=nothing
if (objHttp.status <> 200 ) then

elseif (objHttp.respon seText = "VERIFIED") then
ABC()

'This function will do the database operations
elseif (objHttp.respon seText = "INVALID") then
else
end if
set objHttp = nothing
In the admin_paypal_co nfirmation.asp i added a filesystemobjec t so that i
could see whether the data or is this file being called.
To my surprise i find that it is not created also.If i run this file alone
directly it will create the file.but thru paypal its not creating

Any help will be of great use
Regards
Vinod

Jul 22 '05 #6

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

Similar topics

0
2124
by: Adam King | last post by:
Hey, I'm trying to set-up a PayPal Instant Payment Notification backend to a site. The problem is that I cannot post back to PayPal using "fsockopen()" since my service provider (1and1.co.uk) blocks outgoing HTTP connections because this "binds a port". Does anyone know any workaround at all? Have other people using IPN just used fsockopen? is cURL an option? (I assume not but I have no experience whatsoever
1
2110
by: Sanju Joseph | last post by:
Dear friends, We are working on a website which will enable the users to place orders from restaurants. The payments are to be directed through Paypal.com. Can anyone provide us necessary information on the IPN(Instant Payment Notification) tracking? We are using our own shopping cart. When we place the order from our site the ordered items and the price needs to be processed in the PayPal site. There is a Confirm Order ASP Page from...
0
2910
by: rgparkins | last post by:
HI I have 2 problems, 1 of which is tied to PHP and 1 loosely tied, so I'll put this out there. Got a problem that I have been working on for a while now which involves implementing the Paypal IPN. I am using PHP 4 to automatically post back to Paypal and I am using curl package. I am doing a Custom request and would like to know if anyone has
4
2447
by: Mark | last post by:
Hi all, I have an ASP.NET application which I use to call paypal. I pass in the success URL as http://www.somedomain.com/success.aspx I go right through the paypal process and I finally get the "Return to merchant" button on the PayPal screen. If I look at the source code of the Paypal page the form action looks like
1
2051
by: Greg | last post by:
I have code (below) that was working a year ago that I'm trying to use again and it's now not working. The response is always invalid. Anyone know why? Code: Function GetPayPal() As Boolean Dim myRequest As HttpWebRequest = CType(HttpWebRequest.Create("https://www.paypal.com/cgi-bin/webscr"), HttpWebRequest) Dim strToSend As String
2
1843
by: #2pencil | last post by:
After some google'n & looking through some PayPal pdfs I'm starting a post here. What I'm trying to find is the method of changing (upgrading or downgrading) members subscription services through the PayPal ipn. What I don't want to do is force them to cancle & resubscribe. Anyone know where this documentation is that I have failed to find? Any help would be appreciated!
10
2201
by: Samuel Shulman | last post by:
I look for source code to implement Paypal standard payment system in my ASP.NET website Thanks, Samuel
2
1754
by: t0m66 | last post by:
I've got a setup for my online game for upgraded accounts. However, I'm unable to communicate with Paypal's IPN sandbox server. Does anyone have any experience with Paypal's IPN and, if so, can someone help me out? case 'validate': // read the post from PayPal system and add 'cmd' $req = 'cmd=_notify-validate'; foreach ($_POST as $key => $value) { $value =...
2
1551
by: adamjblakey | last post by:
Hi, I have just signed up to paypal pro payments and want to get this set-up on my site. What i want to do is have a form where the customer can fill in their credit card details and when the user clicks pay now then it will check with paypal without going off my site to see if the payment is valid or not. I have seen quite a few classes which i think do this but want to know your opinion on the best way to set this up and also what...
0
9711
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9591
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
10343
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
10331
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
10087
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
5529
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...
1
4306
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
3831
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3001
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.