这可能是一个百灵鸟,但是对于recaptcha控件,因为有时需要很长时间才能呈现,这可能吗?
如果渲染时间超过 5 秒,我想停止对象的渲染并显示我自己的验证码。
我会在页面加载时启动一个计时器,如果 5 秒过去了,在某些情况下,在 recaptcha 控件(prerender?)中,我会取消渲染或使其不可见或类似的效果。它是第 3 方用户控件,所以我没有来源。
更新:
我发布后尝试了下面的代码。它的工作原理是,如果用户控件无法连接其服务器,即 - 我关闭我的互联网连接,但是当控件等待服务器返回时,当有很长的暂停时它没有感觉给它。即使我将毫秒间隔更改为 1,控件也会呈现。
<MTAThread()> _
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Dim ucChk As New UCExistenceChecker(recaptcha, Me)
Dim doFindUC As System.Threading.TimerCallback = AddressOf ucChk.FindUC
Dim stateTimer As System.Threading.Timer = New System.Threading.Timer(doFindUC, Nothing, 0, 5000)
End If
End Sub
Public Class UCExistenceChecker
Dim _r As Recaptcha.RecaptchaControl
Dim _pg As Page
Sub New(ByVal r As Recaptcha.RecaptchaControl, ByVal pg As Page)
_r = r
_pg = pg
End Sub
Sub FindUC(ByVal stateInfo As Object)
If _pg.FindControl("recaptcha") Is Nothing Then
_r.SkipRecaptcha = True 'This "unrenders" the control, sort of.
End If
End Sub
End Class