안녕하세요
NMHTTP의 post메소드를 사용하는데 있어서
아무리 해도 안되는게 있어서 글을 올립니다.
다음의 HTML에 대한 post를 하려하는데요
<form action="http://ipulse/dll/Server.asp" method="POST">
<p>Name:<input type="text" name="Name" size="20"></p>
<p>Password:<input type="text" name="Password" size="20"></p>
<p><input type="submit" value="submit" name="B1"><input type="reset"
value="reset" name="B2"></p>
</form>
이에 대한 결과를 다음처럼 날렸는데
NMHTTP.Post('http://ipulse/dll/Server.asp','Name=ray&Password=1234');
이렇게 하면 되지 않고
NMHTTP.get('http://ipulse/dll/Server.asp?Name=ray&Password=1234');
이런 식으로 날려야 되더군요..
그런데 문제는 넘기는 파라미터가 간단한 글자가 아니라 메모같이
글이 여러줄에 있는 경우 아주 긴 스트링으로 날리면 중간에
데이타가 잘려서 날라가지 않더군요..
post메소드의 정확한 사용법을 가르쳐 주세요...