Search

You searched for the word(s): userid:796404

Matching Posts

  • Re: Classic ASP > can't delete cookies where domain is set

    ok I figured it out. You have to assign the .domainname.com domain when you clear them out otherwise it won't clear them out.
    Posted to Client Side Web Development (Forum) by daxmax on 3/19/2009
  • Classic ASP > can't delete cookies where domain is set

    So I have this code on an old ASP page which I recently updated because we are migrating, and I have set the domain of the cookie to include any subdomains: Response.cookies("PERSID") = PERSID if Temporary =false then Response.Cookies("PERSID").Expires = DateAdd("d", cookieExpires, Date) end if Response.Cookies("PERSID").Domain = Domainname 'Where domainname is ".mydomain.com" The problem is I cannot for the life of me find a way to delete this
    Posted to Client Side Web Development (Forum) by daxmax on 3/19/2009
    Filed under: Classic ASP cookies subdomain delete
  • Re: VS 2008, Classic ASP, and character encoding

    Thank you Mikhail. Both solutions worked for me.
    Posted to Visual Studio 2008 (Forum) by daxmax on 1/29/2009
  • Re: VS 2008, Classic ASP, and character encoding

    well as I mentioned there was a function which would break down a string which was stored in a user's cookie. It was at that level that the application failed. What it seems to me is that the cookies might be affected or the way the value in the cookie is affected by how the page is encoded? If so is there a way to set the a template to have no encoding?
    Posted to Visual Studio 2008 (Forum) by daxmax on 1/29/2009
  • VS 2008, Classic ASP, and character encoding

    Ok this one is far out there but I do think it has something to do with how VS 2008 saves files. I have some classic ASP I still maintain. I recently added on to the code of a page but upon updating the code on the website the page would not load. I checked everything and even went so far as to delete all the code out of the ASP file and even then it wouldnt load. It is then when I noticed that the file was 3 bytes in size which if the file was to completely empty it should be 0 bytes in size. except
    Posted to Visual Studio 2008 (Forum) by daxmax on 1/28/2009
  • Re: IE 7 - HTML forms within the main .NET form

    I had forgotten I was posting back to my own page so I can manipulate whether I recieve the data as post or get. That being said I am sure there is somebody that has had this issue that would benefit from an alternate method to post the form in the post method. Thanks Jackyang.
    Posted to Web Forms (Forum) by daxmax on 1/15/2009
  • Re: IE 7 - HTML forms within the main .NET form

    the posted solution would work for get but not post. Is there any way of posting to another page in a similiar manner as this but for form post? <input type="text" name="zoom_query" size="15" /> <input type="button" value="Search" onClick="window.location=' http://sisco.ztechsystems.net/search.asp ?zoom_query=' + this.form.zoom_query.value" >
    Posted to Web Forms (Forum) by daxmax on 1/15/2009
  • IE 7 - HTML forms within the main .NET form

    Ok, so I have been having this issue for a while now and I can't figure out how to get around it. We have a google search on the top of the page, an HTML form ,standard fare. The form is rendered inside the .NET primary form. so <form> <form name="gsearch"> </form> </form> With firefox this isn't an issue, both forms do what they are supposed to. However IE triggers the primary form when I submit the HTML google search form and the button on the form below
    Posted to Web Forms (Forum) by daxmax on 1/15/2009
  • Issues with Visual basic reference

    So today I opened up an existing project I haven't touched for a few weeks. When I went to build it it gave me about a hundred errors. Most of them had to do with me referencing replace, instr,vbcrlf and ot her VB specific functions. Do I now have to specifically reference "Imports Microsoft.VisualBasic" in every file? it seems a bit odd to me as I am developing on a visual basic project so why isn't it included across the proejct? Can I do this at the web.config level and if so
    Posted to Visual Basic .NET (Forum) by daxmax on 1/5/2009
  • Re: have problem on deleting the cookies

    If you are just trying to parse through your cookies and remove them then: For Each item In Request.Cookies Response.Cookies.Remove(item) Next
    Posted to State Management (Forum) by daxmax on 5/23/2008
Page 1 of 3 (29 items) 1 2 3 Next >