看看我的程序为什么获不到传递的 xml啊

问题描述

发送网站页面<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="Default.aspx.cs"Inherits="WebApplication2._Default"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>无标题页</title></head><body><formid="form1"runat="server"><div><asp:ButtonID="Button1"runat="server"OnClick="Button1_Click"Style="z-index:100;left:45px;position:absolute;top:69px"Text="Button"/><asp:TextBoxID="TextBox1"runat="server"></asp:TextBox><asp:TextBoxID="TextBox2"runat="server"></asp:TextBox></div></form></body></html>singSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;usingSystem.Xml;usingSystem.IO;namespaceWebApplication2{publicpartialclass_Default:System.Web.UI.Page{publicstringmsecondid="1";protectedvoidPage_Load(objectsender,EventArgse){}protectedvoidButton1_Click(objectsender,EventArgse){stringXMLPathFull=@"C:a.xml";StreamReadersr=newStreamReader(XMLPathFull);MSXML2.XMLHTTPxmlhttp=newMSXML2.XMLHTTPClass();stringurl="http://localhost:13789/";xmlhttp.open("post",url,true,"","");xmlhttp.setRequestHeader("Content-Type","text/xml;charset=UTF-8");xmlhttp.send(sr.ReadToEnd());}}}接收网站页面<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="Default.aspx.cs"Inherits="WebApplication3._Default"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>无标题页</title></head><body><formid="form1"runat="server"><div><asp:ButtonID="Button1"runat="server"OnClick="Button1_Click"Text="Button"/></div></form></body></html>usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;namespaceWebApplication3{publicpartialclass_Default:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){}protectedvoidButton1_Click(objectsender,EventArgse){MSXML2.XMLHTTPxmlhttp=newMSXML2.XMLHTTPClass();stringurl="http://localhost:13489/";xmlhttp.open("get",url,true,"","");byte[]buf=Request.BinaryRead(Request.ContentLength);stringstr=System.Text.Encoding.UTF8.GetString(buf);Response.Write(str);}}}

解决方案

解决方案二:
debug下,兄弟!

时间: 2024-09-20 10:52:32

看看我的程序为什么获不到传递的 xml啊的相关文章

请大家帮忙看看我的程序问题在什么地方! 谢谢!

问题描述 下面是关于一个 Client 和 Server 的一个非常简单的程序,要达到的目的就是通过把几个数从Client传到Server,然后Server又把一些数传给Client.但结果是Server能够得到Client传来的数,可是Server不能把数传给Client.请问大家,问题出在什么地方?另外,这样的传输问题,一定要用到线程吗? 非常感谢!import java.io.*;import java.net.*;public class ClientTest { public stat

Web程序中网页间数据传递方法小结

web|程序|数据|网页 介绍 我们总是会遇到这样的情况,需要将数值从一个网页传递到另一个网页.在这篇文章中,向你展示了几种从一个网页向另一个网页传递数值的几种方法.在此例子中,创建的网页由一个文本控件和几个按钮控件组成.在文本框中输入的数据通过被标识在按钮控件中的不同方法从一个网页传递到另一个网页. Response.Redirect 让我们首先看一看如何使用Response.Redirect方法传递数据.这是它们之中最简单的方法.在文本框中输入一些数据,并且当你输入完成数据后,按下"Resp

更新-最近学习java的缓存机制,请大家看看我的代码有什么不足

问题描述 最近学习java的缓存机制,请大家看看我的代码有什么不足 一个简单的测试类,如果在高并发下会有问题么 package com.test.cache;import java.util.Map;import java.util.concurrent.ConcurrentHashMap;public class CacheManager { private volatile static CacheManager cacheManager;//缓存类的实例 private long upDa

c语言acm1003 求大神看看我的代码哪错了

问题描述 c语言acm1003 求大神看看我的代码哪错了 Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence is 6 + (-1) + 5 + 4 = 14. Input The first line of the input

求专业人士看这个程序问题出在哪?

问题描述 求专业人士看这个程序问题出在哪? import java.io.*;import java.net.*;public class Sb{ public static void main(String[] args){ String m1m2; m1=""222.22.125.142""; m2=""""; try{ //创建连接到服务器的Socket对象 while(!m2.equals(""en

代码-求好心人看看我的code哪里不对

问题描述 求好心人看看我的code哪里不对 这是我写的一个作业的代码,但是每次运行的时候文件无论如何都打不开,但是我的文档已经放进了文件夹里面,现在很无奈不知道怎么办,有好心人能帮忙解答一下吗...跪谢 #include #include #include #include using namespace std; const int MAX_ASCII=127; const int MIN_ASCII= 0; const int NUM_ASCII=128; int main() { int

matlab simulink-请大神看看我的自抗扰控制框图搭的是否正确

问题描述 请大神看看我的自抗扰控制框图搭的是否正确 请大神帮忙看看是否正确? 解决方案 http://www.ilovematlab.cn/thread-453705-1-1.html

C语言--有木有大神帮帮看看我的折半法代码,已经自己研究了好长时间,还是弄不出来???

问题描述 C语言--有木有大神帮帮看看我的折半法代码,已经自己研究了好长时间,还是弄不出来??? #include #include #define M 3 void inputName(char name[][121],double money[]); void ouput(char name[][121],double money[]); void sortPay(char name[][121],double money[]); void sortName(char name[][121]

循环添加-请各位大神帮我看看我的问题出现在哪里?

问题描述 请各位大神帮我看看我的问题出现在哪里? 解决方案 这种问题无法回答.因为你提供的有用信息太少. 你不能沉浸在你的问题中,而假定别人知道你问题的上下文. 你得把你打算做什么,你怎么做,遇到什么问题说清楚. 特别是,你的数据库是什么样的. 另外一个明显的问题是stmt,你应该用类似如下的代码初始化: conn.prepareStatement(你的查询); 可以参考:http://blog.csdn.net/yangjizhong/article/details/4793760 解决方案二