Click here to Skip to main content
15,898,222 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: how to use join query to merge order,customer,category and product table? Pin
Peter Leow2-Mar-14 5:36
professionalPeter Leow2-Mar-14 5:36 
GeneralRe: how to use join query to merge order,customer,category and product table? Pin
zunisheikh2-Mar-14 5:58
zunisheikh2-Mar-14 5:58 
Questionhow to use join query to merge order,customer,category and product table? Pin
zunisheikh2-Mar-14 4:57
zunisheikh2-Mar-14 4:57 
RantRe: how to use join query to merge order,customer,category and product table? Pin
thatraja2-Mar-14 20:12
professionalthatraja2-Mar-14 20:12 
GeneralRe: how to use join query to merge order,customer,category and product table? Pin
zunisheikh2-Mar-14 22:18
zunisheikh2-Mar-14 22:18 
GeneralRe: how to use join query to merge order,customer,category and product table? Pin
thatraja2-Mar-14 22:27
professionalthatraja2-Mar-14 22:27 
QuestionRouting at the iis level Pin
Keith Barrow26-Feb-14 23:05
professionalKeith Barrow26-Feb-14 23:05 
AnswerSorted! - Partially Pin
Keith Barrow27-Feb-14 1:45
professionalKeith Barrow27-Feb-14 1:45 
Turns out can do with re-write, it doesn't just re-direct. The web.config looks like

XML
<rewrite>
	<rules>
		<rule name="Rewrite rule Map Files Migrated out of classic>
			<match url=".*" />
			<conditions>
				<add input="{MapMigratedFiles:{REQUEST_URI}}" pattern="(.+)" />
			</conditions>
			<action type="Rewrite" url="{C:1}" appendQueryString="false" />
		</rule>
	</rules>
	<rewriteMaps>
		<rewriteMap name="MapMigratedFiles" defaultValue="">
			<add key="/robots.txt" value="/new/robots.txt" />
			<add key="/sitemap.xml" value="/new/sitemap.xml" />
		</rewriteMap>
	</rewriteMaps>
</rewrite>

TBH I'd already tried the rewriteMap, but without the rule it doesn't do anything.

[Edit]
The above only seems to work where the app pools are the same. I investigated ARR, which required a web farm to be set up (too heavy). I also looked at IAPSI Re-write (IIS <7) and APE , which doesn't recognised IIS7 as being installed, which it is. Have taken plan D and started on an HttpHandler which will forward on.


modified 3-Mar-14 4:38am.

Questionfew questions re: skinnable players. Thanks in advance. Pin
Member 1062547325-Feb-14 13:39
Member 1062547325-Feb-14 13:39 
QuestionHow to develop a Website Pin
damiend12323-Feb-14 19:36
damiend12323-Feb-14 19:36 
AnswerRe: How to develop a Website Pin
Kornfeld Eliyahu Peter23-Feb-14 20:50
professionalKornfeld Eliyahu Peter23-Feb-14 20:50 
GeneralRe: How to develop a Website Pin
vikas dwivedi24-Feb-14 7:05
vikas dwivedi24-Feb-14 7:05 
GeneralRe: How to develop a Website Pin
damiend12324-Feb-14 17:00
damiend12324-Feb-14 17:00 
AnswerRe: How to develop a Website Pin
thatraja23-Feb-14 22:15
professionalthatraja23-Feb-14 22:15 
AnswerRe: How to develop a Website Pin
Richard MacCutchan23-Feb-14 22:15
mveRichard MacCutchan23-Feb-14 22:15 
GeneralRe: How to develop a Website Pin
damiend12324-Feb-14 17:01
damiend12324-Feb-14 17:01 
AnswerRe: How to develop a Website Pin
MixBag24-Feb-14 9:08
MixBag24-Feb-14 9:08 
GeneralRe: How to develop a Website Pin
damiend12324-Feb-14 17:01
damiend12324-Feb-14 17:01 
AnswerRe: How to develop a Website Pin
chrislim288824-Feb-14 14:18
professionalchrislim288824-Feb-14 14:18 
GeneralRe: How to develop a Website Pin
damiend12324-Feb-14 17:02
damiend12324-Feb-14 17:02 
AnswerRe: How to develop a Website Pin
Charan_Kumar2-Mar-14 19:30
professionalCharan_Kumar2-Mar-14 19:30 
AnswerRe: How to develop a Website Pin
harishm5913-Mar-14 21:17
harishm5913-Mar-14 21:17 
AnswerRe: How to develop a Website Pin
pitechindore31-Dec-14 23:32
pitechindore31-Dec-14 23:32 
Questioni want to display the all values in the drop down box in the div Pin
Narendra Naidu8917-Feb-14 21:38
Narendra Naidu8917-Feb-14 21:38 
AnswerRe: i want to display the all values in the drop down box in the div Pin
thatraja17-Feb-14 23:37
professionalthatraja17-Feb-14 23:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.