473,804 Members | 3,397 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

cgi.FieldStorag e() not working on Windows

I've mod_php installed with Apache 2.2. In one of my folders, I'm
using the cgihandler as the PythonHandler as my target host runs
python only as CGI. Here cgi.FieldStorag e() doesn't seem to work. I
can see the form data in sys.stdin but cgi.FieldStorag e() returns an
empty dictionary. Here's the code for the test script I am posting to
-

--
#!/usr/bin/python

import os
import cgi
import sys

print "Content Type: text/plain\n\n"
print "Hello CGI World !\n"

for key in os.environ:
print key + "= " + os.environ[key]

print cgi.FieldStorag e()

print sys.stdin.read( )
--

And here's the output I see ..

--
Hello CGI World !

HTTP_REFERER= http://learnpython/form.htm
SERVER_SOFTWARE = Apache/2.2.4 (Win32) mod_python/3.3.1 Python/2.5.1
SCRIPT_NAME= /mptest.py
SERVER_SIGNATUR E=
REQUEST_METHOD= POST
SERVER_PROTOCOL = HTTP/1.1
QUERY_STRING= abc=ayz
PATH= C:\Program Files\Internet Explorer;;C:\WI NDOWS\system32; C:
\WINDOWS;C:\WIN DOWS\System32\W bem;q:\bin;m:\c m\clearcase\bin ;M:\PERL\NT
\EXEC\BIN;m:\cm \clearcase\bin\ nt;M:\Perl\NT\E XEC\BIN;m:\perl \nt\exec
\bin;m:\cm\clea rcase\utils;q:\ bin;m:\opus;m:\ tvcs;C:\highc33 1\bin;C:
\Program Files\Rational\ ClearCase\bin;C :\Program Files\Rational\ common
CONTENT_LENGTH= 86
HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
HTTP_CONNECTION = Keep-Alive
SERVER_NAME= learnpython
REMOTE_ADDR= 127.0.0.1
PATHEXT= .COM;.EXE;.BAT; .CMD;.VBS;.VBE; .JS;.JSE;.WSF;. WSH
SERVER_PORT= 80
SERVER_ADDR= 127.0.0.1
DOCUMENT_ROOT= D:/Projects/LearnPython/www
COMSPEC= C:\WINDOWS\syst em32\cmd.exe
SCRIPT_FILENAME = D:/Projects/LearnPython/www/mptest.py
SERVER_ADMIN= pu**********@te kelec.com
HTTP_HOST= learnpython
SystemRoot= C:\WINDOWS
HTTP_CACHE_CONT ROL= no-cache
REQUEST_URI= /mptest.py?abc=a yz
HTTP_ACCEPT= */*
WINDIR= C:\WINDOWS
GATEWAY_INTERFA CE= Python-CGI/1.1
REMOTE_PORT= 1081
HTTP_ACCEPT_LAN GUAGE= en-us
CONTENT_TYPE= application/x-www-form-urlencoded
HTTP_ACCEPT_ENC ODING= gzip, deflate

FieldStorage(No ne, None, [])

firstName=punee t&address=hawai i
--

I am posting to this script using a form with two text fields named
firstName and address.

any clue where am I going wrong ?

thanks,

regards,
-Puneet.

Jun 12 '07 #1
4 4885
On Jun 13, 1:17 am, arorap <aro...@gmail.c omwrote:
I've mod_php installed with Apache 2.2. In one of my folders, I'm
using the cgihandler as the PythonHandler as my target host runs
python only as CGI. Here cgi.FieldStorag e() doesn't seem to work. I
can see the form data in sys.stdin but cgi.FieldStorag e() returns an
empty dictionary. Here's the code for the test script I am posting to
-

--
#!/usr/bin/python

import os
import cgi
import sys

print "Content Type: text/plain\n\n"
print "Hello CGI World !\n"

for key in os.environ:
print key + "= " + os.environ[key]

print cgi.FieldStorag e()

print sys.stdin.read( )
--

And here's the output I see ..

--
Hello CGI World !

HTTP_REFERER=ht tp://learnpython/form.htm
SERVER_SOFTWARE = Apache/2.2.4 (Win32)mod_pyth on/3.3.1 Python/2.5.1
SCRIPT_NAME= /mptest.py
SERVER_SIGNATUR E=
REQUEST_METHOD= POST
SERVER_PROTOCOL = HTTP/1.1
QUERY_STRING= abc=ayz
PATH= C:\Program Files\Internet Explorer;;C:\WI NDOWS\system32; C:
\WINDOWS;C:\WIN DOWS\System32\W bem;q:\bin;m:\c m\clearcase\bin ;M:\PERL\NT
\EXEC\BIN;m:\cm \clearcase\bin\ nt;M:\Perl\NT\E XEC\BIN;m:\perl \nt\exec
\bin;m:\cm\clea rcase\utils;q:\ bin;m:\opus;m:\ tvcs;C:\highc33 1\bin;C:
\Program Files\Rational\ ClearCase\bin;C :\Program Files\Rational\ common
CONTENT_LENGTH= 86
HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
HTTP_CONNECTION = Keep-Alive
SERVER_NAME= learnpython
REMOTE_ADDR= 127.0.0.1
PATHEXT= .COM;.EXE;.BAT; .CMD;.VBS;.VBE; .JS;.JSE;.WSF;. WSH
SERVER_PORT= 80
SERVER_ADDR= 127.0.0.1
DOCUMENT_ROOT= D:/Projects/LearnPython/www
COMSPEC= C:\WINDOWS\syst em32\cmd.exe
SCRIPT_FILENAME = D:/Projects/LearnPython/www/mptest.py
SERVER_ADMIN= puneet.ar...@te kelec.com
HTTP_HOST= learnpython
SystemRoot= C:\WINDOWS
HTTP_CACHE_CONT ROL= no-cache
REQUEST_URI= /mptest.py?abc=a yz
HTTP_ACCEPT= */*
WINDIR= C:\WINDOWS
GATEWAY_INTERFA CE= Python-CGI/1.1
REMOTE_PORT= 1081
HTTP_ACCEPT_LAN GUAGE= en-us
CONTENT_TYPE= application/x-www-form-urlencoded
HTTP_ACCEPT_ENC ODING= gzip, deflate

FieldStorage(No ne, None, [])

firstName=punee t&address=hawai i
--

I am posting to this script using a form with two text fields named
firstName and address.

any clue where am I going wrong ?
You don't need mod_python/cgihandler to run CGI scripts. Rather than
bring mod_python into the picture and confuse things, set up Apache to
run your script as a traditional CGI script instead.

BTW, the fact that mod_python is loaded means that CGI scripts aren't
the only way of using Python available to you as you seem to think.
So, suggest you do some research as to what the differences are
between CGI and mod_python.

Graham

Jun 13 '07 #2
Thanks for your reply.

The reason I want to run it as CGI (even though mod_php is available
on my local computer) is that the target machine to which I will
finally be uploading my scripts runs CGI.

cgihandler should work just like CGI. Any clue why the
cgi.FieldStorag e()might not be working ?
On Jun 12, 7:59 pm, Graham Dumpleton <Graham.Dumple. ..@gmail.com>
wrote:
On Jun 13, 1:17 am,arorap<aro.. .@gmail.comwrot e:
I've mod_php installed with Apache 2.2. In one of my folders, I'm
using the cgihandler as the PythonHandler as my target host runs
python only as CGI. Here cgi.FieldStorag e() doesn't seem to work. I
can see the form data in sys.stdin but cgi.FieldStorag e() returns an
empty dictionary. Here's the code for the test script I am posting to
-
--
#!/usr/bin/python
import os
import cgi
import sys
print "Content Type: text/plain\n\n"
print "Hello CGI World !\n"
for key in os.environ:
print key + "= " + os.environ[key]
print cgi.FieldStorag e()
print sys.stdin.read( )
--
And here's the output I see ..
--
Hello CGI World !
HTTP_REFERER=ht tp://learnpython/form.htm
SERVER_SOFTWARE = Apache/2.2.4 (Win32)mod_pyth on/3.3.1 Python/2.5.1
SCRIPT_NAME= /mptest.py
SERVER_SIGNATUR E=
REQUEST_METHOD= POST
SERVER_PROTOCOL = HTTP/1.1
QUERY_STRING= abc=ayz
PATH= C:\Program Files\Internet Explorer;;C:\WI NDOWS\system32; C:
\WINDOWS;C:\WIN DOWS\System32\W bem;q:\bin;m:\c m\clearcase\bin ;M:\PERL\NT
\EXEC\BIN;m:\cm \clearcase\bin\ nt;M:\Perl\NT\E XEC\BIN;m:\perl \nt\exec
\bin;m:\cm\clea rcase\utils;q:\ bin;m:\opus;m:\ tvcs;C:\highc33 1\bin;C:
\Program Files\Rational\ ClearCase\bin;C :\Program Files\Rational\ common
CONTENT_LENGTH= 86
HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
HTTP_CONNECTION = Keep-Alive
SERVER_NAME= learnpython
REMOTE_ADDR= 127.0.0.1
PATHEXT= .COM;.EXE;.BAT; .CMD;.VBS;.VBE; .JS;.JSE;.WSF;. WSH
SERVER_PORT= 80
SERVER_ADDR= 127.0.0.1
DOCUMENT_ROOT= D:/Projects/LearnPython/www
COMSPEC= C:\WINDOWS\syst em32\cmd.exe
SCRIPT_FILENAME = D:/Projects/LearnPython/www/mptest.py
SERVER_ADMIN= puneet.ar...@te kelec.com
HTTP_HOST= learnpython
SystemRoot= C:\WINDOWS
HTTP_CACHE_CONT ROL= no-cache
REQUEST_URI= /mptest.py?abc=a yz
HTTP_ACCEPT= */*
WINDIR= C:\WINDOWS
GATEWAY_INTERFA CE= Python-CGI/1.1
REMOTE_PORT= 1081
HTTP_ACCEPT_LAN GUAGE= en-us
CONTENT_TYPE= application/x-www-form-urlencoded
HTTP_ACCEPT_ENC ODING= gzip, deflate
FieldStorage(No ne, None, [])
firstName=punee t&address=hawai i
--
I am posting to this script using a form with two text fields named
firstName and address.
any clue where am I going wrong ?

You don't need mod_python/cgihandler to run CGI scripts. Rather than
bring mod_python into the picture and confuse things, set up Apache to
run your script as a traditional CGI script instead.

BTW, the fact that mod_python is loaded means that CGI scripts aren't
the only way of using Python available to you as you seem to think.
So, suggest you do some research as to what the differences are
between CGI and mod_python.

Graham

Jun 13 '07 #3
On Jun 13, 12:58 pm, arorap <aro...@gmail.c omwrote:
Thanks for your reply.

The reason I want to run it as CGI (even though mod_php is available
on my local computer
Why do you keep mentioning mod_php, surely you mean mod_python.
is that the target machine to which I will
finally be uploading my scripts runs CGI.

cgihandler should work just like CGI.
I wouldn't rely on it being exactly the same. The way it works uses a
number of kludges. Also, the mod_python.cgih andler code in mod_python
doesn't really get much attention from mod_python developers anymore
and not sure if it was even specifically retested when mod_python 3.3
was released.
Any clue why the
cgi.FieldStorag e()might not be working ?
Have no idea why it doesn't work as works as written on MacOS X even
when mod_python.cgih andler is used.

You'll have to get someone else who has Windows to try it. You might
be better off going to the mod_python mailing list to get help, or
just use plain old CGI instead since using mod_python isn't really
going to gain you much anyway.

Graham
On Jun 12, 7:59 pm, Graham Dumpleton <Graham.Dumple. ..@gmail.com>
wrote:
On Jun 13, 1:17 am,arorap<aro.. .@gmail.comwrot e:
I've mod_php installed with Apache 2.2. In one of my folders, I'm
using the cgihandler as the PythonHandler as my target host runs
python only as CGI. Here cgi.FieldStorag e() doesn't seem to work. I
can see the form data in sys.stdin but cgi.FieldStorag e() returns an
empty dictionary. Here's the code for the test script I am posting to
-
--
#!/usr/bin/python
import os
import cgi
import sys
print "Content Type: text/plain\n\n"
print "Hello CGI World !\n"
for key in os.environ:
print key + "= " + os.environ[key]
print cgi.FieldStorag e()
print sys.stdin.read( )
--
And here's the output I see ..
--
Hello CGI World !
HTTP_REFERER=ht tp://learnpython/form.htm
SERVER_SOFTWARE = Apache/2.2.4 (Win32)mod_pyth on/3.3.1 Python/2.5.1
SCRIPT_NAME= /mptest.py
SERVER_SIGNATUR E=
REQUEST_METHOD= POST
SERVER_PROTOCOL = HTTP/1.1
QUERY_STRING= abc=ayz
PATH= C:\Program Files\Internet Explorer;;C:\WI NDOWS\system32; C:
\WINDOWS;C:\WIN DOWS\System32\W bem;q:\bin;m:\c m\clearcase\bin ;M:\PERL\NT
\EXEC\BIN;m:\cm \clearcase\bin\ nt;M:\Perl\NT\E XEC\BIN;m:\perl \nt\exec
\bin;m:\cm\clea rcase\utils;q:\ bin;m:\opus;m:\ tvcs;C:\highc33 1\bin;C:
\Program Files\Rational\ ClearCase\bin;C :\Program Files\Rational\ common
CONTENT_LENGTH= 86
HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
HTTP_CONNECTION = Keep-Alive
SERVER_NAME= learnpython
REMOTE_ADDR= 127.0.0.1
PATHEXT= .COM;.EXE;.BAT; .CMD;.VBS;.VBE; .JS;.JSE;.WSF;. WSH
SERVER_PORT= 80
SERVER_ADDR= 127.0.0.1
DOCUMENT_ROOT= D:/Projects/LearnPython/www
COMSPEC= C:\WINDOWS\syst em32\cmd.exe
SCRIPT_FILENAME = D:/Projects/LearnPython/www/mptest.py
SERVER_ADMIN= puneet.ar...@te kelec.com
HTTP_HOST= learnpython
SystemRoot= C:\WINDOWS
HTTP_CACHE_CONT ROL= no-cache
REQUEST_URI= /mptest.py?abc=a yz
HTTP_ACCEPT= */*
WINDIR= C:\WINDOWS
GATEWAY_INTERFA CE= Python-CGI/1.1
REMOTE_PORT= 1081
HTTP_ACCEPT_LAN GUAGE= en-us
CONTENT_TYPE= application/x-www-form-urlencoded
HTTP_ACCEPT_ENC ODING= gzip, deflate
FieldStorage(No ne, None, [])
firstName=punee t&address=hawai i
--
I am posting to this script using a form with two text fields named
firstName and address.
any clue where am I going wrong ?
You don't need mod_python/cgihandler to run CGI scripts. Rather than
bring mod_python into the picture and confuse things, set up Apache to
run your script as a traditional CGI script instead.
BTW, the fact that mod_python is loaded means that CGI scripts aren't
the only way of using Python available to you as you seem to think.
So, suggest you do some research as to what the differences are
between CGI and mod_python.
Jun 13 '07 #4
OOps .. yes I mean mod_python. I've been using PHP way too long :P ..
hence the typo
On Jun 13, 4:01 am, Graham Dumpleton <Graham.Dumple. ..@gmail.com>
wrote:
On Jun 13, 12:58 pm,arorap<aro.. .@gmail.comwrot e:
Thanks for your reply.
The reason I want to run it as CGI (even though mod_php is available
on my local computer

Why do you keep mentioning mod_php, surely you mean mod_python.
is that the target machine to which I will
finally be uploading my scripts runs CGI.
cgihandler should work just like CGI.

I wouldn't rely on it being exactly the same. The way it works uses a
number of kludges. Also, the mod_python.cgih andler code in mod_python
doesn't really get much attention from mod_python developers anymore
and not sure if it was even specifically retested when mod_python 3.3
was released.
Any clue why the
cgi.FieldStorag e()might not be working ?

Have no idea why it doesn't work as works as written on MacOS X even
when mod_python.cgih andler is used.

You'll have to get someone else who has Windows to try it. You might
be better off going to the mod_python mailing list to get help, or
just use plain old CGI instead since using mod_python isn't really
going to gain you much anyway.

Graham
On Jun 12, 7:59 pm, Graham Dumpleton <Graham.Dumple. ..@gmail.com>
wrote:
On Jun 13, 1:17 am,arorap<aro.. .@gmail.comwrot e:
I've mod_php installed with Apache 2.2. In one of my folders, I'm
using the cgihandler as the PythonHandler as my target host runs
python only as CGI. Here cgi.FieldStorag e() doesn't seem to work. I
can see the form data in sys.stdin but cgi.FieldStorag e() returns an
empty dictionary. Here's the code for the test script I am posting to
-
--
#!/usr/bin/python
import os
import cgi
import sys
print "Content Type: text/plain\n\n"
print "Hello CGI World !\n"
for key in os.environ:
print key + "= " + os.environ[key]
print cgi.FieldStorag e()
print sys.stdin.read( )
--
And here's the output I see ..
--
Hello CGI World !
HTTP_REFERER=ht tp://learnpython/form.htm
SERVER_SOFTWARE = Apache/2.2.4 (Win32)mod_pyth on/3.3.1 Python/2.5.1
SCRIPT_NAME= /mptest.py
SERVER_SIGNATUR E=
REQUEST_METHOD= POST
SERVER_PROTOCOL = HTTP/1.1
QUERY_STRING= abc=ayz
PATH= C:\Program Files\Internet Explorer;;C:\WI NDOWS\system32; C:
\WINDOWS;C:\WIN DOWS\System32\W bem;q:\bin;m:\c m\clearcase\bin ;M:\PERL\NT
\EXEC\BIN;m:\cm \clearcase\bin\ nt;M:\Perl\NT\E XEC\BIN;m:\perl \nt\exec
\bin;m:\cm\clea rcase\utils;q:\ bin;m:\opus;m:\ tvcs;C:\highc33 1\bin;C:
\Program Files\Rational\ ClearCase\bin;C :\Program Files\Rational\ common
CONTENT_LENGTH= 86
HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
HTTP_CONNECTION = Keep-Alive
SERVER_NAME= learnpython
REMOTE_ADDR= 127.0.0.1
PATHEXT= .COM;.EXE;.BAT; .CMD;.VBS;.VBE; .JS;.JSE;.WSF;. WSH
SERVER_PORT= 80
SERVER_ADDR= 127.0.0.1
DOCUMENT_ROOT= D:/Projects/LearnPython/www
COMSPEC= C:\WINDOWS\syst em32\cmd.exe
SCRIPT_FILENAME = D:/Projects/LearnPython/www/mptest.py
SERVER_ADMIN= puneet.ar...@te kelec.com
HTTP_HOST= learnpython
SystemRoot= C:\WINDOWS
HTTP_CACHE_CONT ROL= no-cache
REQUEST_URI= /mptest.py?abc=a yz
HTTP_ACCEPT= */*
WINDIR= C:\WINDOWS
GATEWAY_INTERFA CE= Python-CGI/1.1
REMOTE_PORT= 1081
HTTP_ACCEPT_LAN GUAGE= en-us
CONTENT_TYPE= application/x-www-form-urlencoded
HTTP_ACCEPT_ENC ODING= gzip, deflate
FieldStorage(No ne, None, [])
firstName=punee t&address=hawai i
--
I am posting to this script using a form with two text fields named
firstName and address.
any clue where am I going wrong ?
You don't need mod_python/cgihandler to run CGI scripts. Rather than
bring mod_python into the picture and confuse things, set up Apache to
run your script as a traditional CGI script instead.
BTW, the fact that mod_python is loaded means that CGI scripts aren't
the only way of using Python available to you as you seem to think.
So, suggest you do some research as to what the differences are
between CGI and mod_python.- Hide quoted text -

- Show quoted text -

Jun 13 '07 #5

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

Similar topics

1
4989
by: Al Stoltz | last post by:
Greetings all. I've got a small web application (just a web interface to a MS-access database) and I recently upgraded ActiveState's python dist. from 2.2 to their latest (2.3.2 I think). In the process, I broke some of my cgi scripts. A little troubleshooting reveals that the cgi.fieldstorage() method is not receiving any data at all when using an HTTP POST request in my HTML. If I change to a GET request, all is well.
0
1252
by: Fred Murray | last post by:
Hi all, When uploading a file ("input type=file"), FieldStorage usually behaves correctly, but every once in a while (every couple days?), it will suddenly start causing internal server errors. A look at the apache (v. 2.0.44 on Linux) error log shows "premature end of script headers" with no error messages from Python. After reloading the browser about 10 times in a row, it will suddenly start working again. Recently, when a series...
1
1827
by: Austyn Bontrager | last post by:
Should cgi.FieldStorage examine the environment variable REDIRECT_REQUEST_METHOD before examining REQUEST_METHOD? I'm running Apache, and write my CGI scripts in Python. I have this in a /techdocs/.htaccess file: ErrorDocument 401 /forms/registration.cgi Require valid-user
1
1639
by: Ames Andreas (MPA/DF) | last post by:
Hi, sorry for following-up to myself. Some remarks: 1) Please excuse the bogus original message. I wrote it a minute before I knocked off work and I promise to never do so again :-) 2) What I really wanted to know was: FieldStorage writes what it reads from the stream that is given to its constructor's fp (or sys.stdin by default) to a temporary file only _in some cases_. My
1
1952
by: Ames Andreas (MPA/DF) | last post by:
Hi, I'm currently using Zope 2.7.2-0 which in turn uses cgi.FieldStorage from Python 2.3.4. FieldStorage can either build a 'list' or a 'file' to represent a request. Unfortunately it overwrites __len__ such that it throws an exception when the request wasn't of type 'multipart', i.e. when it doesn't 'return' a list but a file. I'd consider this a bug because if you have an instance fs of FieldStorage you can't safely write
1
2841
by: Graeme Matthew | last post by:
Hi all I do a CGI post, I am using CGI.FieldStorage(), I obtain the values etc al works fine. I now need to take the same posted data and resubmit it to a remote server i.e I need to rebuild the entire raw html request. Does anyone know if you can retrieve the entire request string before parsing it via the cgi module? and then resubmit this to another server?
4
2123
by: Derek Basch | last post by:
Given this FieldStorage object: FieldStorage(None, None, ) I am trying to cgi.urlencode the FieldStorage object to POST to another cgi script. The documentation for urlencode, http://docs.python.org/lib/module-urllib.html , says that urlencode takes a mapping object or a list of double tuples. I see that I could use cgi.parse_qs and cgi.parse_qsl to create these object types. Should I just use that or should I continue using...
3
2214
by: Chris Curvey | last post by:
I can't be the first person to want to do this, but I also can't seem to find a solution. (Perhaps my Google skills are poor today.) How can I emulate cgi.FieldStorage() for my unit tests so that I don't have to put a web server in the way? what I'd like to do is something like fs = cgi.FieldStorage() fs = "bar" functionToBeTested(fs)
0
1902
by: John Salerno | last post by:
I'm trying to use a for loop with a FieldStorage object and I get the following error. Can you not treat it like a dictionary, or am I writing the for loop incorrectly? for item in form: print item # or print item.value
0
10320
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
10308
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
10073
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...
1
7609
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
6846
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
5645
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4288
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
3806
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2981
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.