User-Agent Demo

The following demo displays the value from the Request object's UserAgent property.


Your user-agent string is:
CCBot/1.0 (+http://www.commoncrawl.org/bot.html)


Source Code
<script runat="server" language="VB">
  Sub Page_Load(sender as Object, e as EventArgs)
    userAgent.Text = Request.UserAgent
  End Sub
</script>

<asp:Label runat="server" id="userAgent"></asp:Label>

[Return to the article]