I have a website and I have installed URL Rewrite using Web Platform Installer. I wish to allow a user friendly URL like www.foo.com/123456 to go to www.foo.com/page.aspx?blah=123456. Using the User-friendly URL template accomplishes this except that the created rule also matches all of the /scriptresource.axd?blahblah created by ASP.NE...
I've done plenty of outbound email processing via both SQLServer and .net web apps. But in terms of what I can do to respond to incoming email I'm starting from scratch and looking for an overview of how an asp.net (preferably examples specific to mvc apps) assembly can use input from inbound email using resources native to IIS7/winserve...
Hi,
I wish to do some settings in IIS7 which could run asp.net 1.1 websites.For that some settings in ISAPI and CGI Extensions are required. But when Opened IIS 7 i couldn't locate any of those.
I have enable all IIS features from Programs and Features in Control Panel
I am using W7 32bit Enterprise Edition
Thanks
...
What is the meaning of:
<location path="web.config">
With the following web.config file (located in the root of the web app) will doDynamicCompression be set to true or false?
<configuration>
<system.webServer>
<urlCompression doDynamicCompression="true" />
</system.webServer>
...
<location path="web.config"...
I got 2 pages on my iis7. None of them got a domain addy yet. So I wonder how I could connect to them with the server ip somehow?
like if i got all in the files in wwwroot and I can access to the web site like this..
http://111.MYIP/default.aspx
appreciate any help I get thanks
...
I use a simple ASP.NET MVC web (the template you use when you create a new site) and the web works as expected in my live environment.
I now try to use IIS Application Request Routing version 2. I have a rule that send all reuqests to a different server that match a rule.
The settings are a bit like this: http://blogs.iis.net/wonyoo/ar...
I am building an ASP.NET application. Within each ASPX page, we are outputting inline snippets of HTML that are pulled from static text files. Similar to the example shown here:
http://www.dotnetcurry.com/ShowArticle.aspx?ID=331
As in the article, we store the contents of the files in HttpRuntime.Cache with a CacheDependency pointing t...
I'm writing an ISAPI filter for the IIS7 that should map some functionalities of the Apache Mod_Rewrite. The whole rewriting is finished and I now want to implement the ErrorDocument directive.
When I do have RewriteEngine off the rewriting is disabled as intended. But how about the ErrorDocument ?
How is the default Mod_Rewrite behaviou...
I have an (ASP.NET 3.5) intranet application which has been designed to use forms authentication (along with the default aspnet membership system). I also store additional information about users in another table which shares its primary key with the aspnet_users table.
For users who are part of our domain I store their domain account ...
Hi. I been strugling with this for 2 days now without comming any closer to solution. I have read 20-30 threads alteast and stil can not resolve this.
Please help me out.
I have disable anonymous authentication, enable asp.net impersonation.
I have added <identity impersonate = "true" />
I have added the a user to the security logins...
I've got an ASP MVC (1.0) application. It works fine locally via visual studio and on our dev server which runs IIS6. But when I try to deploy to the Test server (running IIS7 on Windows Server 2008 R2) I get only :
"Could not load file or assembly '<ApplicationName>' or one of its dependencies. Access is denied" (where <ApplicationNa...
How can I use the Server Side Includes module in IIS to include and process a ColdFusion file from a .htm file? I'm currently doing something like this in my html file:
<!--#include virtual="navmenu.cfm"-->
This includes the raw contents of the navmenu file. I need it to execute the ColdFusion code and return the output of that proces...
I have an ASP.NET application whose .aspx files include
<script language="VB" runat="Server">
blocks. I am attaching the Visual Studio debugger to IIS 7 (w3wp.exe), but Visual Studio won't let me add breakpoints inside these script blocks. It says
This is not a valid location for a breakpoint
How do I debug these blocks?
...
Hi there,
I Have some problems with redirecting to another URL based on the query string parameters. I want to redirect users which enter www.domain.com/signup.aspx?p=1 to:
www.domain.com/signup
<rule name="Signup Redirect 1" stopProcessing="true">
<match url="signup\.aspx\?p=1" />
<conditi...
Hi all.
I am working on an ASP.Net Web Site Provisioning software using WMI(System.Managment) and C#.
I am trying to create FTP site on my "Target Server" located somewhere on LAN while executing code on my host machine. I have trouble starting the FTP Site after its creations.
The error being reported is "Invalid Class" on the follo...
Hi,
I would like to send e-mail from my own custom webpart using SPUtility (on wss3.0). The issue is that smtp server is on the same host as sharepoint services. SMTP server works and I can send e-mail using telnet. (But it always telling me that message is queued. After all e-mail are reaching theirs destination and they are in my e-ma...
At a customer of ours, candidates take tests with our software. If their test is finished, some calculations are done on the server. Now, sometimes, 200 candidates can end their test at the same time, so 200 calculations are done concurrent. The calculations all seem to go fine, but some calls to the IIS7 server get back a http error... ...
Hi,
I'm having a problem when browsing a published site on local iis7 (on windows 7).
When browsing the asp.net site through VS2008 with F5 (dev iis) it works fine. When publishing it and browsing, I get a:
Server Error in '/MySite' Application.
The specified module could not be found. (Exception from HRESULT: 0x8007007E)
...
Hello All, I am having a rather bizarre error when trying to debug a .NET web application.
My system: Windows 7 Ultimate (IIS7), Visual Studio 2008, DotNetNuke 4.8.2.
I have a Web Application which I am trying to attach the debugger to w3wp.exe. I set a breakpoint in my code: could be an ascx.cs page or a library I am referencing. ...
Hi all,
I am working on a website provisioning system using IIS 7 (and IIS6) and using C# as development Tool (under .Net 3.5) using WMI.
I want to create FTP Site via code in C# using WMI. I cant want to use MWA(Microsoft.Web.Administration) because I have to support older version a.k.a IIS 6 as well. I believe its possible via WMI.
...