Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
I did have a
tag in my web.config which I removed, but the result is the same.
Here is a web form I use to test this:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AjaxTest.aspx.cs" Inherits="ODS.PSIWeb.OdsDevelopment.templates.AjaxTest" %>
Untitled Page
I've tried the same form in a non-EPiServer site, and there IE only refreshes the updatepanel and not the entire page, which leads me to thinking there must be some sort of conflict with EPiServer components, script or something else...
Also, I'm using Vista and IIS7 for development, I will try to reproduce the problem on an IIS6 box today to see if that might have anything to do with it.
protected void Page_Load(object sender, EventArgs e)
{
Literal1.Text = DateTime.Now.ToString();
}
protected void calendar1_SelectionChanged(object sender, EventArgs e)
{
Literal2.Text = calendar1.SelectedDate.ToString();
}
In IE it sounds like it does a postback when I click on the calendar but Literal1 is not updated.