由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - 请教如何写一个网页处理method=post的请求
相关主题
大家都用啥设计website?请问有什么免费的网页制作工具嘛?
用什么能比对文件是否改动过?谁给推荐个网页编辑器?
Urgent: ASP support?good software to edit html?
[转载]国外空间乱码显示问题的解决现在建个简单的网页 都用什么软件?
请教:JavaScript怎么复制一个node(含子节点)? (转载)Re: [转载] webmonkey
Looking for Good ASP&HTML editor请教:网页的Back按钮是怎么做的?
如何作个模板[转载] 请教ASP高手
大家现在都用什么编html?网页中数据库格式显示问题
相关话题的讨论汇总
话题: dom话题: method话题: post话题: subnode话题: request
进入BuildingWeb版参与讨论
1 (共1页)
h******n
发帖数: 232
1
需要一个简单的网页:处理client request(method=post)。response 一段xml或者
string。
从来没写过网页,不知应该如何入手。多谢!
B*****g
发帖数: 34098
2
need more information

【在 h******n 的大作中提到】
: 需要一个简单的网页:处理client request(method=post)。response 一段xml或者
: string。
: 从来没写过网页,不知应该如何入手。多谢!

d*******8
发帖数: 3182
3
2 options:
1, if you use windows xp system, go to start => all programs => Accessories
=> Notpad, click to open it, and then you can write code.
2, download an editing software, like UltraEdit, EditPlus, etc., use it to
write code after installed.

【在 h******n 的大作中提到】
: 需要一个简单的网页:处理client request(method=post)。response 一段xml或者
: string。
: 从来没写过网页,不知应该如何入手。多谢!

B*****g
发帖数: 34098
4
人家从来没写过网页,你叫人家用notepad?

Accessories

【在 d*******8 的大作中提到】
: 2 options:
: 1, if you use windows xp system, go to start => all programs => Accessories
: => Notpad, click to open it, and then you can write code.
: 2, download an editing software, like UltraEdit, EditPlus, etc., use it to
: write code after installed.

j****h
发帖数: 6
5
Are you handling client request on client side
Or you want to do something complicate such as making a database call, etc.
and your language preference, like php, asp, asp.net, etc.
h******n
发帖数: 232
6
多谢你们的回复
用什么写不重要了,请问程序代码怎么写呢?用html或者xml可以么?是不是一定要用
JScript或者VBscript?
服务器我用的是windows server 2003自带的IIS.
可能我说的还是不太清楚,还需要知道其他什么信息?

【在 B*****g 的大作中提到】
: 人家从来没写过网页,你叫人家用notepad?
:
: Accessories

h******n
发帖数: 232
7
I try to handle client request at web service side. I want something simple.
I know xml, java, c#. It is not necessary to make a DB. The purpose is to
test whether client request using different method (get, post, put ...)
works well.
thanks.

.

【在 j****h 的大作中提到】
: Are you handling client request on client side
: Or you want to do something complicate such as making a database call, etc.
: and your language preference, like php, asp, asp.net, etc.

o***s
发帖数: 31
8
php code 如下:

if($_SERVER['REQUEST_METHOD'] == 'POST') {
//print "Response a string";
$dom = new DOMDocument();
$dom->formatOutput = true;
$rootNode = $dom->createElement("myxml");
$dom->appendChild($rootNode);
$subnode = $dom->createElement("subnode");
$subnode->nodeValue = "This is an example";
$rootNode->appendChild($subnode);
header("Content-type: text/xml");
print $dom->saveXML();
} else {
?>

B*****g
发帖数: 34098
9
asp .net with C# as you use windows and knowing c#

【在 h******n 的大作中提到】
: 多谢你们的回复
: 用什么写不重要了,请问程序代码怎么写呢?用html或者xml可以么?是不是一定要用
: JScript或者VBscript?
: 服务器我用的是windows server 2003自带的IIS.
: 可能我说的还是不太清楚,还需要知道其他什么信息?

l*****a
发帖数: 166
10
这是最简单的一个大概框架:
首先需要一个form (html 可以)
// or form.php, aspx, html, form (
servlet)
// textboxes and other controls


然后需要一个后台处理程序form.asp or others。
response.getParameter 或其他。输出可以是html, xml, 或 pure text.
用什么语言都行,但是要server side, 否则不用post.

【在 h******n 的大作中提到】
: 多谢你们的回复
: 用什么写不重要了,请问程序代码怎么写呢?用html或者xml可以么?是不是一定要用
: JScript或者VBscript?
: 服务器我用的是windows server 2003自带的IIS.
: 可能我说的还是不太清楚,还需要知道其他什么信息?

l*****a
发帖数: 166
11
some links:
http://www.netmechanic.com/news/vol5/beginner_no19.htm
or search "form processing", you may add html, web or other words.

【在 h******n 的大作中提到】
: 多谢你们的回复
: 用什么写不重要了,请问程序代码怎么写呢?用html或者xml可以么?是不是一定要用
: JScript或者VBscript?
: 服务器我用的是windows server 2003自带的IIS.
: 可能我说的还是不太清楚,还需要知道其他什么信息?

1 (共1页)
进入BuildingWeb版参与讨论
相关主题
网页中数据库格式显示问题请教:JavaScript怎么复制一个node(含子节点)? (转载)
how to process session varible in javascript?Looking for Good ASP&HTML editor
Re: Can asp invoke a software at the server side???Help, very urgent!如何作个模板
为什么webpage里收不到ATL control 的event大家现在都用什么编html?
大家都用啥设计website?请问有什么免费的网页制作工具嘛?
用什么能比对文件是否改动过?谁给推荐个网页编辑器?
Urgent: ASP support?good software to edit html?
[转载]国外空间乱码显示问题的解决现在建个简单的网页 都用什么软件?
相关话题的讨论汇总
话题: dom话题: method话题: post话题: subnode话题: request