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 可以)
然后需要一个后台处理程序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. : 可能我说的还是不太清楚,还需要知道其他什么信息?
|
|