如何从 Python Web 客户端 prgoram 的网页获取 VIEWSTATE 值?
我想从我使用的网页中获取 VIEWSTATE 值。(这个网站是用 ASP.NET 编写的)这个值变化得更快,我想在连接到网站并在我的 Python 程序中使用它时获得这个值。
任何想法。 请给我举个例子 谢谢
I wanna get VIEWSTATE value from webpage that I use.( this site was wrote in ASP.NET) This value is change more quickly and I want to get this when I connect to site and use it in my Python program.
Any Ideas.
please give me an example
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用lxml.html解析页面和xpath(参见教程 ) 获取 VIEWSTATE 对应的隐藏表单字段。请参阅 http://msdn.microsoft.com/en-us/library/ms972976。有关如何使用 VIEWSTATE 的信息,请参见 .aspx。
Use lxml.html to parse the page and xpath (see tutorial) to get the hidden form field corresponding to VIEWSTATE. See http://msdn.microsoft.com/en-us/library/ms972976.aspx for info on how VIEWSTATE is apparently used.