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...
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...
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">...
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...
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...
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?
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...
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 =...
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...
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...
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~
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...
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...
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:)...
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...
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
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
{...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.