Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Jimi2Cool

    Allowing URL masking where the file does not exist in IIS 7.0

    I am trying to upgrade to IIS 7.0 but i am having an issue with something was so easy in IIS 6.0. How can i make IIS 7.0 not verify that the file exists so i can use dynamic URL creation for database driven websites? This was so easy in IIS 6.0 because it was just a check box but it does not...
  2. Jimi2Cool

    Trouble adding wcf service reference to web app client

    I have an ASP.Net Web Application project that I’m having a difficult time adding a WCF Service reference to. The Service is hosted on another machine in IIS 6. I know the service is fine since if I try to add a reference to it from a new test Web App project, everything works great. I can...
  3. Jimi2Cool

    Remote WCF service hangs

    ok, i have a service that fetches images from a database for me.the service is hosted in IIS and the service config is as follows <system.serviceModel> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> <diagnostics performanceCounters="All" wmiProviderEnabled="True">...
  4. Jimi2Cool

    asp.net image caching and wcf secutity issue

    So, I have an aspx page called image.aspx I want to use to render image bytes obtained through a WCF service by their id. In order to prevent some malicious code from using this url and just iterating through all the images to get them all (thus really boggong down the site) I first call the...
  5. Jimi2Cool

    Single Page Assemblies in VS 2008 web app

    so, i'm wondering where the ability to build a website with single page assemblies has went in 2k8. I can't think of a reason they'd remove the ability all togather since having to replace the entire website would make patching... well, not patching at all. This is a normal ASP.Net Web...
  6. Jimi2Cool

    Response.Redirect not working

    OK. i have a strance symptom happening. i have a searchbox control that calls response.redirect on the button click event. I can step all the way through to the redirect call and no errors occur. However, it stays on the current page. Any ideas?
  7. Jimi2Cool

    temporarily blocking crawlers/bots

    I'm about to transition my site from one version to another. i have loads of content and SEO is of the utmost importance. so, for a few hours i'd like to temporarily block crawlers from indexing any of te new content in case something goes wrong and i need to revert back. i'm trying to redirect...
  8. Jimi2Cool

    foreign character comparison problem

    hmm, well, i think i found the solution that works in my case. something like this works the way i need it --------------------------------------- static System.Globalization.CompareInfo compareinf = System.Globalization.CompareInfo.GetCompareInfo("en-us"); string s =...
  9. Jimi2Cool

    foreign character comparison problem

    OK. i have a method that looks through a list of strings to find matches to user input. for instance the list contains these 2 entries As, Aš if i user types As id like to grab both entries. I've been trying things with string.Compair to ignore culture and what not but no matter what i do i...
  10. Jimi2Cool

    javascript autofill/suggest box problems

    Ok, I’m trying to implement this javascript/ajax autofill control that uses a webservice to get a list of strings matching the users input. I have nearly everything working proper but one part. It seems no matter what way I try things I can never get the current value of the textbox on a...
  11. Jimi2Cool

    Code execution inside a placeholder control

    just so i dont look even more novice "(without putting if(Container.Visible) checks all over the place)" I meant "(without putting if(this.Parent.Visible) checks all over the place)" sorry~
  12. Jimi2Cool

    Code execution inside a placeholder control

    i was under the impression that the controls inside a placeholder dont fire there events or execute any codebehind unless the placeholder was visible. in my app it appears that all my controls are running weather they are in a visible placeholder or not, if they're in an invisible placeholder...
  13. Jimi2Cool

    accessing master page class from app_code

    well, i guess my problem stems from the fact that i'm migrating from a 2.0 web app to a 2.0 website, neither are in 1.1 and i read that the wizard doesn't migrate from 2.0 web app (created using the web app pluggin" to a 2.0 website, this is irritating and think i'm the one who originally (and...
  14. Jimi2Cool

    accessing master page class from app_code

    yeah, i think that was part of the issue. originally the site was a standalone web application project i merrged the contents into an existing website project. the web application project uses codebehind and the website uses codefile and i found out right away THERE IS A DIFFERENCE:)...
  15. Jimi2Cool

    accessing master page class from app_code

    DING DING DING! WE HAVE A WINNER! so, i was able to split the code into 2 files, the properties (accessed all over the place) went in app_code, the event handlers went int the same folder as the master page. i refferenced the one in it's own directory for codefile since codefile's just for the...
  16. Jimi2Cool

    accessing master page class from app_code

    nope, no effect I'm wondering if this has anything to do with moving the files from a web app to a website? the structure was the same in the web app. it wasn't until i moved it to a website i started getting these errors
  17. Jimi2Cool

    accessing master page class from app_code

    Here's the markup <%@ Master Language="C#" AutoEventWireup="true" CodeFile="~/App_Code/CodeBehind/MyMasterPage.Master.cs" Inherits="EncMyWebsiteyclopedia4.Common.MasterPages.MasterPage" %> <%@ Register Src="../Controls/MasterPages/OmnitureTag.ascx" TagName="OmnitureTag" TagPrefix="uc3"...
  18. Jimi2Cool

    accessing master page class from app_code

    ok, here's the code in the codebehind file ---------------------- namespace MyWebsite.Common.MasterPages { public partial class MasterPage : System.Web.UI.MasterPage { #region Properties private string title; public string Title {...
  19. Jimi2Cool

    accessing master page class from app_code

    FANTASTIC! IT WORKS! but... so i guess i have a delema about this cause i'm starting to understand the access stuff with app_code so, from app_code, my master page's code behind cant seem to see any of the controls in the masterpage.master file. this is the same type of issue isn't it? So, i...
  20. Jimi2Cool

    accessing master page class from app_code

    the error is occuring in the pagebase class which is under app_code i have code like this in the PageBase class: Public MySite.Common.MasterPages.MyMaster MyMasterPage { get { return (MySite.Common.MasterPages.MyMaster)Master; } } and the exact error is: "The type or...

Part and Inventory Search

Back
Top