Re: Making posts to an ASP.NET webform.

2006-10-04 Thread Bernard
Bernard wrote: > Gabriel Genellina wrote: > > At Monday 2/10/2006 13:05, Bernard wrote: > > > > > > > Has anyone tried what I'm doing? and if you tried how have you > > > > > succeeded getting the data back after the post action? > > > > Use a packet sniffer or something to look at an actual POST

Re: Making posts to an ASP.NET webform.

2006-10-04 Thread Bernard
Gabriel Genellina wrote: > At Monday 2/10/2006 13:05, Bernard wrote: > > > > > Has anyone tried what I'm doing? and if you tried how have you > > > > succeeded getting the data back after the post action? > > Use a packet sniffer or something to look at an actual POST that > works, this way you cou

Re: Making posts to an ASP.NET webform.

2006-10-02 Thread Gabriel Genellina
At Monday 2/10/2006 13:05, Bernard wrote: > > Has anyone tried what I'm doing? and if you tried how have you > > succeeded getting the data back after the post action? Use a packet sniffer or something to look at an actual POST that works, this way you could see what's missing in your code.

Re: Making posts to an ASP.NET webform.

2006-10-02 Thread Bernard
Max M wrote: > Bernard skrev: > > > Has anyone tried what I'm doing? and if you tried how have you > > succeeded getting the data back after the post action? > > Most likely you get assigned a cookie that you then need to return. > > Try the cookielib which automates all this for you. Yea I'm alr

Re: Making posts to an ASP.NET webform.

2006-10-02 Thread Max M
Bernard skrev: > Has anyone tried what I'm doing? and if you tried how have you > succeeded getting the data back after the post action? Most likely you get assigned a cookie that you then need to return. Try the cookielib which automates all this for you. -- http://mail.python.org/mailman/list

Making posts to an ASP.NET webform.

2006-10-02 Thread Bernard
hiya everyone, I've made this little webcrawler using BeautifulSoup, urllib and urllib2. I've been encountering ASP.NET Forms recently and I can't seem to make a proper post to some of them. My post function has been doing great until this particular website. Here's some explanations first so that