User Profile

Collapse

Profile Sidebar

Collapse
dihola
dihola
Last Activity: Jul 31 '08, 02:48 PM
Joined: Nov 30 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • dihola
    replied to IIS7 - New session id with every request
    in .NET
    Hi,

    I have resolved the problem. The reason why it wasn't working is, deep breath, because my website's url contained an underscore character (ie http://my_website).

    I have changed the name and now it all works fine. I can not believe how STUPID this is. Thanks IE for another nice "feature". And well done Safari for copying such functionality. Firefox and Opera, you still remain favourites.
    See more | Go to post

    Leave a comment:


  • dihola
    replied to IIS7 - New session id with every request
    in .NET
    Hi,
    yeah I believe so but why? I have reduced the security levels to a minimum and the browser has no problems accepting cookies from other sites. In fact it accepts cookies from my same website when hosted in a Windows Server 2003 with II6.
    Thanks...
    See more | Go to post

    Leave a comment:


  • dihola
    started a topic IIS7 - New session id with every request
    in .NET

    IIS7 - New session id with every request

    Hi,

    I have a website running in IIS7 and it seems to be creating a new session for every request I make. The values I store in Session are lost with every request.

    This is the forms bit in my web.config:

    <authenticati on mode="Forms">
    <forms name=".ReMaCRM" loginUrl="~/Login.aspx" defaultUrl="~/Default.aspx" cookieless="Aut oDetect"...
    See more | Go to post

  • dihola
    started a topic Need advice setting up Solution file
    in .NET

    Need advice setting up Solution file

    Hi all,
    I am developing 2 websites (A and B) that share a lot of pages and classes, and I wonder if I am doing it
    the right way. I have extracted the common classes and created master pages for all common pages in a
    third project (C), as follows (roughly simplified):

    --C
    ---page1.master
    ---page2.master
    ---commonclass1.cs
    ---commonclass2.cs

    --A
    ---page1.master...
    See more | Go to post

  • Users not logged out when session expires - ASP.NET - C#

    Hi,
    I have a problem with an ASP.NET C# application. When the session expires and then the user tries to access any page in the browser, instead of being transferred to the login page the website simply creates a new session and resumes the browsing as if nothing happened. I am using forms authentication and InProc sessions:

    <authenticati on mode="Forms">
    <forms name=".CRM" loginUrl="~/Login.aspx"...
    See more | Go to post
    Last edited by jhardman; Mar 11 '08, 03:21 AM. Reason: moved to .Net forum. ASP forum is for "classic" ASP

  • Can I output a dynamically generated bitmap with HtmlTextWriter?

    Hi all,

    A component I have renders itself (essentially an HTML table) using an HtmlTextWriter object to create some HTML code.
    This component is part of an aspx page. I need the component to also render an image, which I create dynamically and
    wouldn't like to save to disk. This is how I render my component and then create the image:

    private void RenderComponent (HtmlTextWriter writer)
    ...
    See more | Go to post

  • Firefox not responding to postbacks after the first one

    Hi all,
    I have a page (C# ASP.NET) with a link button which when clicked, executes a postback that downloads a file for the user. The way this file is downloaded is:

    Code:
    FileInfo file = new FileInfo(HttpContext.Current.Server.MapPath(filename));
            if (file.Exists)
            {
                HttpContext.Current.Response.Clear();
                HttpContext.Current.Response.AddHeader("Content-Disposition",
    ...
    See more | Go to post
No activity results to display
Show More
Working...