Search

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

Matching Posts

  • Re: Testing for IE7/IE8 browser compatibility

    Hi all- Thanks for all your helpful replies. talhaturan - Thanks for the link to Quirksmode. It's a great resource. Unfortunately I don't think I can use it for my problem. My site was written for the IE5 era -- in other words in "Quirks mode". So I think IE8, being a "standards mode" browser, is breaking my quirks mode code. Do you know of any listing of IE5.x quirks mode behaviour, like this one from Mozilla ( https://developer.mozilla.org/en/Mozilla_Quirks_Mode_Behavior
  • Testing for IE7/IE8 browser compatibility

    My team is maintaining a large .NET web application that was originally built and optimized for Internet Explorer 5 and 6. As new versions of IE have been released, a number of errors have surfaced when customers access the application using those browsers. We are primarily concerned with errors in functionality (e.g., Javascript menus unclickable, form submissions not working, etc). Does Microsoft have any documented procedures for determining if which functions/pages/modules of an existing web
    Posted to Client Side Web Development (Forum) by multiplex7777 on 10/22/2009
    Filed under: browser, Testing
  • Transferring session state across sub-domains

    Hi, I have a cluster of web servers running on domain1.mysite.com and another cluster of servers running on domain2.mysite.com. I need to transfer a session from domain1 to domain2. I've read http://www.codeproject.com/KB/aspnet/SingleSignon.aspx , which tells me to modify the cookie’s domain attribute to point to its second-level domain – mysite.com. This solution is not going to fly for me because my company's security won't allow it. (Let's just take it that I can't do anything
    Posted to State Management (Forum) by multiplex7777 on 8/18/2009
    Filed under: Session State, transferring
  • Re: Transferring session state across sub-domains

    Thanks realfantasy. My sessions are already being stored in a state server in domain1. But my problem is that if I add a server in domain2, the session can't be transferred over. Or can it? A background of why I want to transfer the session: My domain1 servers are already overloaded. I now have a new web app but do not want to deploy it to the domain1 servers. I also don't want to add servers to domain1, as this will only result in the load being distributed on all the servers in domain1
    Posted to State Management (Forum) by multiplex7777 on 8/18/2009
  • Re: Hosting subdomains externally

    Thanks for your replies. I just have a few follow up questions: 1. I read that MX Records cannot contain IP addresses. How then do I direct email coming in for @site1.mycompany.com to the 3rd party web hosting company's mail exchange server? 2. Will this pose any security issues for my company's data centre? Thanks for your help.
    Posted to Hosting Open Forum (Forum) by multiplex7777 on 4/5/2009
  • Hosting subdomains externally

    Hi, My company's domain is mycompany.com and we are hosting our corporate website in our own datacenter. Now I want to create another website, site1.mycompany.com, to be hosted in an external third party datacenter. 1. can this be done and how? 2. Is it possible for me to send out mail (via ASP.NET) using the address info@site1.mycompany.com ? HOpe someone can shed some light on this for me. Thank you.
    Posted to Hosting Open Forum (Forum) by multiplex7777 on 4/2/2009
    Filed under: subdomains, domains, hosting
  • Re: Load Xml data into XmlDataSource programmatically

    I managed to get it to work without XmlDataSource. I bound a DataSet to the GridView instead. DataSet ds = new DataSet(); ds.ReadXml(new XmlNodeReader(xDoc)); GridView1.DataSource = ds; GridView1.DataBind();
  • Re: Can I use the XmlDataSource Control to read an xml string in an asp.net page

    Hi John, I'm having the same challenge here. Can you share how you solved this pls? Thanks.
  • Re: Load Xml data into XmlDataSource programmatically

    Hi, Thanks for your reply. I had already tried that, but got an error "Cannot implicitly convert type 'System.Xml.XmlDocument' to 'string' ". I also tried: XmlDataSource1.Data = (string)xDoc; //Error: Won't compile XmlDataSource1.Data = xDoc.ToString(); //Error: Data at the root level is invalid Any other ideas? Thanks.
  • Load Xml data into XmlDataSource programmatically

    Hello, I'm trying to load Xml data retrieved from a web service into an XmlDataSource control. But I don't know how to load it. Here's my ASPX: <asp:GridView ID= "GridView1" DataSourceID= "XmlDataSource1" runat= "server" > <Columns> <asp:BoundField DataField="Field1" /> <asp:BoundField DataField="Field2" /> <asp:BoundField DataField="Field3" /> <asp:BoundField DataField="Field4" />
    Posted to XML and XmlDataSource Control (Forum) by multiplex7777 on 2/17/2009
    Filed under: xmldocument, XmlDataSource
Page 1 of 27 (267 items) 1 2 3 4 5 Next > ... Last »