使用 VB.NET 模拟表单提交

发布于 2024-07-23 04:05:15 字数 457 浏览 5 评论 0 原文

我想知道是否可以模拟按钮

alt 文本
(来源:xonefm.com

在此网站由 VB.NET 代码编写?

http://www2.xonefm.com/hot10/index_in.aspx

I wonder if I can simulate the action of the button

alt text
(source: xonefm.com)

in this website by VB.NET code ?

http://www2.xonefm.com/hot10/index_in.aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

要走就滚别墨迹 2024-07-30 04:05:15

在服务器代码中,您可以使用 ClientScriptManager.GetPostBackEventReference 来呈现回发事件引用
这是msdn上的链接 http://msdn .microsoft.com/en-us/library/system.web.ui.page.getpostbackeventreference.aspx

这里是一个示例

允许选择 gridview 行而不选择列。

protected override void Render(HtmlTextWriter writer)
{
GridView g = GridView1;
foreach (GridViewRow r in g.Rows)
{

if(DataControlRowType.DataRow == r.RowType)
{
r.Attributes["onMouseOver"] = "this.style.cursor='pointer';this.style.cursor='hand'";
r.Attributes["OnClick"] = ClientScript.GetPostBackEventReference(g, "Select$" + r.RowIndex, true);
}
}

base.Render(writer);
}

From server code you could use ClientScriptManager.GetPostBackEventReference which renders out a postback event reference
heres a link on msdn http://msdn.microsoft.com/en-us/library/system.web.ui.page.getpostbackeventreference.aspx

heres a sample

Allows selecting gridview row without select column.

protected override void Render(HtmlTextWriter writer)
{
GridView g = GridView1;
foreach (GridViewRow r in g.Rows)
{

if(DataControlRowType.DataRow == r.RowType)
{
r.Attributes["onMouseOver"] = "this.style.cursor='pointer';this.style.cursor='hand'";
r.Attributes["OnClick"] = ClientScript.GetPostBackEventReference(g, "Select$" + r.RowIndex, true);
}
}

base.Render(writer);
}
撩起发的微风 2024-07-30 04:05:15

这是您的网站吗? 如果是这样,您可能可以直接调用按钮的单击事件(假设它导致回发)。

你在抓取别人的网站吗? 在这种情况下,请使用 System.Net.WebClientSystem.Net.HttpWebRequest 对象向服务器发送与单击按钮时浏览器将发送的类似请求。 有两种方法可以查明请求的内容:

  • 研究相关页面的源代码,直到您了解单击按钮时发送的 http 请求是什么。 由于隐藏的 ViewState 字段,这对于 asp.net 站点来说尤其棘手。
  • 使用 WireShark 之类的工具来嗅探发送的数据包并从中逆向工作。

Is this your web site? If so, you can probably just call the click event for the button directly (assuming it causes a postback).

Are you scraping someone else's site? In that case, use a System.Net.WebClient or System.Net.HttpWebRequest object to send a similar request to the server that the browser would send if you click the button. There are two ways to find out what the request will be:

  • Study the source of the page in question until you understand what http request is sent when you click the button. This can be especially tricky for asp.net sites because of the hidden ViewState field.
  • Use something like WireShark to sniff the packet sent and work backwards from that.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文