Ok, I'm out of ideas and I have been working with 2 other people on
this. I ma basically in charge of updating the front end of this
application.
I am working purely on the front end of an application. There is one
main page (launch.aspx) and several different .ascx files that control
the display characteristics.
On certain .ascx pages I can update the look-n-feel, etc and
everything is fine. But the problem is with only one of the files, no
matter what I change on the .ascx file, they do not appear. I am
assuming this page is cached. The behavior seems very sporadic and
random as it has happened on a different file earlier in the week.
So, we went into the
C:\WINNT\Microsoft.NET\Framework\v1.0.3705\Temporary ASP.NET Files
directory and deleted the temp files and restarted IIS. No luck. We
still cannot change the formatting on the control page. (There were
other temp directories and those were deleted also.)
I tried putting the no-cache code on the launch.aspx page. Nothing.
I'm not even sure what to even look for. I aplogize as I do not have
very indepth knowledge of the .NET engine and the exact nature of
processing that takes place.
Thanks much in advance.
Some code, if there is something in here that I should be aware of...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On one of the control pages:
<%@ Control Language="c#" AutoEventWireup="false"
Codebehind="CreateProfile.ascx.cs"
Inherits="Inetium.Threshold.Modules.CreateProfile"
TargetSchema="http://schemas.microsoft.com/intellisense/ie5"
EnableViewState="true" %>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On the launch.aspx page:
<%@ Page language="c#" Codebehind="Launch.aspx.cs"
AutoEventWireup="false" Inherits="ThisAPP.Launch"
EnableSessionState="true" %>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jon Paugh - 18 Nov 2003 17:01 GMT
Reference:
http://www.dotnet247.com/247reference/msgs/13/67641.aspx
>-----Original Message-----
>Ok, I'm out of ideas and I have been working with 2 other people on
[quoted text clipped - 42 lines]
>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>.