Hi.
I have a captcha which refreshes (new image) on F5. I need to alter the code I have so that ONLY the captcha image refreshes and not the whole page.
Here's what I got:
captcha.aspx
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master"
AutoEventWireup="true" CodeBehind="Captcha.aspx.cs"
Inherits="MyrddinCode.Captcha" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent"
runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent"
runat="server">
<h1>
Captcha Image
</h1>
<br />
<asp:Image ID="Image2" runat="server" src="Captcha/Captcha.jpg"
Width="120" Height="25" Style="border: ...
Go to the complete details ...