Click here to Skip to main content
15,887,485 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Simple question Pin
Yulianto.25-Jan-05 16:42
Yulianto.25-Jan-05 16:42 
GeneralRe: Simple question Pin
markkuk25-Jan-05 21:12
markkuk25-Jan-05 21:12 
GeneralDHTML div dilemma Pin
Nino_125-Jan-05 7:11
Nino_125-Jan-05 7:11 
GeneralHere's the Fix !! Pin
Nino_126-Jan-05 6:10
Nino_126-Jan-05 6:10 
Generalflash files Pin
sianatia25-Jan-05 0:01
sianatia25-Jan-05 0:01 
GeneralRe: flash files Pin
JKroschel25-Jan-05 10:52
JKroschel25-Jan-05 10:52 
GeneralConfiguring IIS at application deployment Pin
J4amieC23-Jan-05 22:29
J4amieC23-Jan-05 22:29 
GeneralRe: Configuring IIS at application deployment Pin
J4amieC24-Jan-05 0:25
J4amieC24-Jan-05 0:25 
In case anyone DOES actually use the search function Big Grin | :-D

This code lists all the available properties, and tests adding and removing an application mapping:

DirectoryEntry iis = new DirectoryEntry("IIS://LOCALHOST/W3SVC/1/ROOT");
iis.UsePropertyCache = false;
Console.WriteLine("Path:{0}",iis.Path);
foreach(string prop in iis.Properties.PropertyNames)
	Console.WriteLine(prop);

PropertyValueCollection pvc = iis.Properties["ScriptMaps"];
for(int i=0;i<pvc.Count;i++)
	Console.WriteLine("{0}",pvc[i]);

pvc.Add(@".swf,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG");
Console.WriteLine("======================");
for(int i=0;i<pvc.Count;i++)
	Console.WriteLine("{0}",pvc[i]);

pvc.Remove(@".swf,C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll,5,GET,HEAD,POST,DEBUG");
Console.WriteLine("======================");
for(int i=0;i<pvc.Count;i++)
	Console.WriteLine("{0}",pvc[i]);

Questionhow to import address book from hotmail account into my webpage Pin
lavanm23-Jan-05 18:26
lavanm23-Jan-05 18:26 
Generalisapi ext - access denied writing a txt file Pin
aagmon23-Jan-05 2:24
aagmon23-Jan-05 2:24 
Generalhtml and asp pages in vs .net Pin
brian5521-Jan-05 10:57
brian5521-Jan-05 10:57 
GeneralFrontPage EMail Question Pin
Small Rat21-Jan-05 7:12
Small Rat21-Jan-05 7:12 
GeneralCalling Web servicec without using proxy and giving xml as input Pin
dan_aravind21-Jan-05 1:24
dan_aravind21-Jan-05 1:24 
Generaldifficulty with frames Pin
ojovjm20-Jan-05 18:09
ojovjm20-Jan-05 18:09 
GeneralRe: difficulty with frames Pin
Gavin Jeffrey21-Jan-05 0:58
Gavin Jeffrey21-Jan-05 0:58 
GeneralRe: difficulty with frames Pin
ojovjm21-Jan-05 4:32
ojovjm21-Jan-05 4:32 
GeneralRe: difficulty with frames Pin
Roger Wright21-Jan-05 21:42
professionalRoger Wright21-Jan-05 21:42 
GeneralRe: difficulty with frames Pin
nagarajuepuri25-Jan-05 6:54
nagarajuepuri25-Jan-05 6:54 
Generalcsv import cannot find file on desktop Pin
orangetree20-Jan-05 16:12
orangetree20-Jan-05 16:12 
QuestionHow to integrate C++ application with ASP.net Web Application? Pin
webdevelopex19-Jan-05 15:37
webdevelopex19-Jan-05 15:37 
AnswerRe: How to integrate C++ application with ASP.net Web Application? Pin
V.20-Jan-05 22:29
professionalV.20-Jan-05 22:29 
GeneralJavaScript + dll howto... Pin
spaceus19-Jan-05 10:32
spaceus19-Jan-05 10:32 
GeneralDatabase Pin
Yulianto.18-Jan-05 18:01
Yulianto.18-Jan-05 18:01 
GeneralRe: Database Pin
Colin Angus Mackay19-Jan-05 4:46
Colin Angus Mackay19-Jan-05 4:46 
GeneralRe: Database Pin
Yulianto.19-Jan-05 16:04
Yulianto.19-Jan-05 16:04 

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.