Sei sulla pagina 1di 8

DotNetInterviewFAQ

AllDotNetInterviewQuestionsandAnswers,Interviewquestions,interviewquestion,question,questions,answer,answers,interview,
interviews,jobinterview,jobinterviewquestions,interviewtip,medicalquestion,jobinterviews,ASPNET,DotnetInterviewQuestions,VB
NETQuestion,csharpinterviewquestionsquestionandanswer,.NETinterviewFAQ,VB.NET,C#.NETInterviewquestionswithanswers,
DotNETinterviewquestions,.NETinterviewQuestionanswers..NETinterview.

ASP.NETTroubleshootFAQ
DoIneedIIStorunWebapplications?
IfyouareusingVisualStudio,youcanusetheASP.NETDevelopment
ServerbuiltintoVisualStudiototestyourpages.Theserverfunctionsasa
localWebserver,runningASP.NETWebpagesinamannervirtually
identicaltohowtheyruninIIS.TodeployaWebapplication,youneedto
copyittoacomputerrunningIISversion5or6.
HowdoIcreatepagesformobiledevices?
ASP.NETwillautomaticallydetectthetypeofbrowsermakingtherequest.
Thisinformationisusedbythepageandbyindividualcontrolstorender
appropriatemarkupforthatbrowser.Youthereforedonotneedtousea
specialsetofpagesorcontrolsformobiledevices.(Whetheryoucan
designasinglepagetoworkwithalltypesofbrowserswilldependonthe
page,onthebrowsersyouwanttotarget,andonyourowngoals.)
AreASP.NETpagesXHTMLcompatible?
Yes.IndividualcontrolsrendermarkupthatiscompatiblewiththeXHTML
1.1standard.Itisuptoyou,however,toincludetheappropriatedocument
typedeclarationandotherXHTMLdocumentelements.ASP.NETdoesnot
insertelementsforyoutoensureXHTMLcompatibility.Fordetails,see
ASP.NETandXHTMLCompliance.
CanIhidethesourcecodeformypage?
Serversidecodeisprocessedontheserverandisnotsenttothebrowser,
souserscannotseeit.However,clientscriptisnotprotectedanyclient
scriptthatyouaddtoyourpage,orthatisinjectedintothepagebyserver
processing,isvisibletousers.Ifyouareconcernedaboutprotectingyour
sourcecodeontheserver,youcanprecompileyoursiteanddeploythe
compiledversion.Fordetails,seePublishingWebSites.
WhenIrunapage,Igettheerror"Thepagecannotbedisplayed"and
anHTTP502ProxyError.Why?
ThiserrorcanoccurifyouarerunningASP.NETWebpagesusingthe
VisualWebDeveloperWebserver,becausetheURLincludesarandomly
selectedportnumber.ProxyserversdonotrecognizetheURLandreturn
thiserror.Togetaroundtheproblem,changeyoursettingsinInternet
Explorertobypasstheproxyserverforlocaladdresses,sothattherequest
isnotsenttotheproxy.InInternetExplorer,youcanmakethischangein
Tools>InternetOptions.IntheConnectionstab,clickLANSettingsand
thenselectBypassproxyserverforlocaladdresses.
Whichpagecodemodelispreferable,singlefileorcodebehind?
Bothmodelsfunctionthesameandhavethesameperformance.The
choiceofusingsinglefilepagesversuscodebehindpagesisoneof
personalpreferenceandconvenience.Fordetails,seeASP.NETWeb
PageCodeModel.
TheQuickStartexamplesandexamplesintheAPIreferenceseemtouse
singlefilepagesfrequently.Doesthismeanthatsinglefileisthepreferred
modelforpages?
No.Singlefilepagesarefrequentlyusedinexamplesbecausetheyare
easiertoillustratethewriterdoesnothavetocreateaseparatefileto
showthecode.

SubscribeTo
Posts
Comments
Followers

Jointhissite
withGoogleFriendConnect

Therearenomembersyet.
Bethefirst!

Alreadyamember?Signin

DotNetInterviewQuestionAnswers
.NETBasic(2)
.NETEvents(1)
.NETFrameworkFAQ(1)
AccessControlListin.NETFramework
(1)
ADO(1)
ADO.NETIntroduction(1)
ADO.NETObjectModel(1)
ASP.NETAssemblies(1)
ASP.NETFAQ(1)
ASP.NETinterviewFAQ(1)
ASP.NETSecurity(2)
ASP.NETSessionStateFAQ(1)
ASP.NETTroubleshootFAQ(1)

IsitbettertowritecodeinC#orVisualBasic?
YoucanwritecodeforyourWebapplicationinanylanguagesupportedby
the.NETFramework.ThatincludesVisualBasic,C#,J#,JScript,and
others.Althoughthelanguageshavedifferentsyntax,theyallcompileto
thesameobjectcode.Thelanguageshavesmalldifferencesinhowthey
supportdifferentfeatures.Forexample,C#providesaccesstounmanaged
code,whileVisualBasicsupportsimpliciteventbindingviatheHandles
clause.However,thedifferencesareminor,andunlessyourrequirements
involveoneofthesesmalldifferences,thechoiceofprogramminglanguage
isoneofpersonalpreference.Onceprogramsarecompiled,theyall
performidenticallythatis,VisualBasicprogramsrunjustasfastasC#
programs,sincetheybothproducethesameobjectcode.
DoIhavetouseoneprogramminglanguageforallmyWebpages?
No.Eachpagecanbewritteninadifferentprogramminglanguageifyou
want,eveninthesameapplication.Ifyouarecreatingsourcecodefiles
andputtingtheminthe\App_Codefoldertobecompiledatruntime,allthe
codeinmustbeinthesamelanguage.However,youcancreatesubfolders
inthe\App_Codefolderandusethesubfolderstostorecomponentswritten
indifferentprogramminglanguages.
Isthecodeinsinglefileandcodebehindpagesidentical?
Almost.Acodebehindfilecontainsanexplicitclassdeclaration,whichis
notrequiredforsinglefilepages.
Istheoldcodebehindmodelstillsupported?
Oldprojectswillcontinuetorunwithoutchange.InVisualStudio2005,if
youopenaprojectcreatedinVisualStudio.NET2002or2003,bydefault,
theprojectisconvertedtothenewprojectlayoutusedinVisualStudio
2005.Aspartoftheconversion,pagesthatusetheoldcodebehindmodel
areconvertedtousethenewcodebehindmodel.VisualStudio2005Web
ApplicationProjectsprovideanalternativewebprojectmodelthatusesthe
sameproject,buildandcompilationsemanticsastheVisualStudio.NET
2003codebehindmodel.Fordetails,seeVisualStudio2005Web
ApplicationProjects.
QuestionsonASP.NET2.0Controls
WhyistherenoDataGridcontrolontheToolbox?
TheDataGridcontrolhasbeensupersededbytheGridViewcontrol,which
candoeverythingtheDataGridcontroldoesandmore.TheGridView
controlfeaturesautomaticdatabindingautogenerationofbuttonsfor
selecting,editing,anddeletingautomaticsortingandautomaticpaging.
ThereisfullbackwardcompatibilityfortheDataGridcontrol,andpagesthat
usetheDataGridwillcontinuetoworkastheydidinversion1.0of
ASP.NET.
CanIstillusetheDataListandRepeatercontrols?
Absolutely.Youcanusethemthewayyoualwayshave.Butnotethatthe
controlshavebeenenhancedtobeabletointeractwithdatasource
controlsandtouseautomaticdatabinding.Forexample,youcanbinda
DataListorRepeatercontroltoaSqlDataSourcecontrolinsteadofwriting
ADO.NETcodetoaccessthedatabase.
What'sthedifferencebetweenlogincontrolsandFormsauthentication?
LogincontrolsareaneasywaytoimplementFormsauthenticationwithout
havingtowriteanycode.Forexample,theLogincontrolperformsthesame
functionsyouwouldnormallyperformwhenusingtheFormsAuthentication
classpromptforusercredentials,validatethem,andissuethe
authenticationticketbutwithallthefunctionalitywrappedinacontrolthat
youcanjustdragfromtheToolboxinVisualStudio.Underthecovers,the
logincontrolusestheFormsAuthenticationclass(forexample,toissuethe
authenticationticket)andASP.NETmembership(tovalidatetheuser
credentials).Naturally,youcanstilluseFormsauthenticationyourself,and
applicationsyouhavethatcurrentlyuseitwillcontinuetorun.
ConfiguringASP.NET2.0
HowisASP.NETconfigurationdataformatted?
ASP.NETconfigurationdataisencodedinXMLandstoredasplaintext
files.Youcanaccessthesefilesprogrammaticallybyusingadministration

C#InterviewQuestions(1)
COMandDCOMFaq(1)
ConfigurationinASP.NET(1)
DeploymentandDevelopmentFAQ(1)
DotNetTerminology(1)
Important.NETFAQ(1)
NET(1)
SQLServerInterviewQuestions(1)
Comments

toolsorbyusingatexteditor.Formoreinformation,seeASP.NET
ConfigurationOverview.
WherearetheASP.NETconfigurationfilesstored?
SystemwideconfigurationsettingsandsomeASP.NETschemasettings
arestoredinafilenamedMachine.config,whichislocatedinthe
%SystemRoot%\Microsoft.NET\Framework\versionNumber\CONFIG
directory.ThisdirectoryalsocontainsotherdefaultsettingsforASP.NET
WebapplicationsinafilethatisreferredtoastherootWeb.configfile.
ASP.NETconfigurationfilesforindividualWebsitesandapplications,
whicharealsonamedWeb.configfiles,canbestoredinanyWebsiteroot
directory,applicationrootdirectory,applicationsubdirectory,orallofthese.
Formoreinformation,seeASP.NETConfigurationFileHierarchy.
HowaretheASP.NETconfigurationfilesrelatedtotheInternet
InformationServices(IIS)configurationfile(theIISmetabase)?
InIISversions6.0andearlier,theASP.NETconfigurationsystemredirects
anyIISspecificsettingsthatitcontrols.TheASP.NETconfiguration
systemthenconfiguresIISforyoubyautomaticallyeditingtheIIS
metabase.ForinformationabouttheIISmetabase,seeWorkingwiththe
IISMetabase.
IusedtheASP.NETconfigurationsystemtorestrictaccesstomy
ASP.NETapplication,butanonymoususerscanstillviewsomeofmy
files.Whyisthat?
ThefeaturesoftheASP.NETconfigurationsystemonlyapplytoASP.NET
resources.Forexample,FormsAuthenticationonlyrestrictsaccessto
ASP.NETfiles,nottostaticfilesorASP(classic)filesunlessthose
resourcesaremappedtoASP.NETfilenameextensions.Usethe
configurationfeaturesofIIStoconfigurenonASP.NETresources.

SincetherecanbemultipleASP.NETconfigurationfilesonone
computer,howdoesASP.NETconfigurationhandleinheritance?
ASP.NETintegratesthesettingsinconfigurationfiles(theMachine.config
andWeb.configfiles)intoasingleinheritancehierarchy.Withafew
exceptions,youcanplaceaWeb.configfilewhereveryouneedtooverride
theconfigurationsettingsthatareinheritedfromaconfigurationfilelocated
atahigherlevelinthehierarchy.Formoreinformation,seeASP.NET
ConfigurationFileHierarchy.
HowdoesASP.NETconsolidatethesettingsinalloftheconfiguration
files?
Atruntime,ASP.NETreadsthesettingsintheMachine.configfileandall
oftheWeb.configfilesandthenassemblesacacheofthesettingsfor
eachvalidURLineachapplicationontheserver.
Whathappenswhenaconfigurationsettingchangesduringruntime?
ASP.NETinvalidatestheexistingcacheandassemblesanewcache.
ThenASP.NETautomaticallyrestartstheapplicationtoapplythechanges.
CanIconfigurespecificfoldersdirectly?

Yes.Byusingthelocationelementinaconfigurationfilethatislocated
higherintheconfigurationhierarchy,youcanconfiguretheattributesof
individualresources,suchastheapplicationdirectoriesunderaWebsiteor
applicationsubdirectories.Thisisusefulinhostingenvironmentsfor
specifyingconfigurationsettingsinamachinelevelconfigurationfilethat
applytoindividualWebsites.Formoreinformation,seeHowto:Configure
SpecificFoldersUsingLocationSettings.
CanIlockaconfigurationsettingsothataWeb.configfilethat
appearslowerinthehierarchycannotoverrideit?
Yes.Bysettingthelocationelement'sOverrideattributetofalse,youcan
lockaspecificsettingsothatitdoesnotinheritsettingsfrombelow.For
moreinformation,seeHowto:LockASP.NETConfigurationSettings.
HowcanIgetprogrammaticaccesstoASP.NETconfigurationsettings?
Youcanread,create,ormodifyconfigurationsettingsfromwithinan
ASP.NETapplicationbyusingtheASP.NETmanagementAPI.Youcan
developyourownapplicationsincludingWebapplications,console
applications,andscriptsthatusethemanagementAPI.
HowcanIgetprogrammaticaccesstoIISconfigurationsettings?
YoucanuseADSI,WMI,orCOMinterfacestoconfigureIIS
programmatically.Formoreinformation,seeUsingIISProgrammatic
Administration.
HowareASP.NETconfigurationfilessecuredagainstunauthorized
access?
ASP.NETconfiguresIIStodenyaccesstoanyuserthatrequestsaccess
totheMachine.configorWeb.configfiles.
WhatarethelimitationswhenconfiguringASP.NETbyusingtheASP.NET
MMCsnapin?
TheASP.NETMMCsnapinallowsyoutosetASP.NETconfigurationatall
levels,butonthelocalcomputeronly.Formoreinformation,seeASP.NET
MMCSnapIn.
CanIconfigureASP.NETWebsitesandapplicationsremotely?
Yes.YoucanusetheWebSiteAdministrationTooltoconfigureremote
WebsitesandapplicationsbyusingaWebbrowser.Formoreinformation,
seeWebSiteAdministrationTool.
CanIconfigureASP.NETbydirectlyeditingtheMachine.configand
Web.configfiles?
Yes.YoucanuseanytexteditororXMLeditortoedittheASP.NET
configurationfilesdirectly.However,considerusingoneofthetools
mentionedinthepreviousquestionstoeditASP.NETconfiguration
becausethosetoolsoftenensureXMLvalidation.
CanIconfigureASP.NETbydirectlyeditingtheIISmetabasefile?
TheIIS6.0metabaseisstoredinanXMLformattedfilecalled
Metabase.xml.YoucanconfigureIIStoallowthemetabasetobeedited
directly,butnotalloftheASP.NETconfigurationsettingsareavailablein
theIISmetabase.ItisbesttoconfigureASP.NETfeaturesbyusingthe
ASP.NETconfigurationsystem.Formoreinformation,seeEditing
ASP.NETConfigurationFiles.
WhattoolscanIusetoedittheIISmetabase?
YoucanusetheIISManagersnapinfortheMMC.Forinformationabout
commonadministrativetasksforASP.NETdevelopers,seeASP.NETand
IISConfiguration.
QuestionsonVisualWebDeveloper
CanIrunWebpagesonaremotecomputerusingASP.NET
DevelopmentServer?
Yes,youcancreateafilesystemWebapplicationandspecifyaUNC
pointingtoanothercomputerasthelocationforthefiles.Whenyouruna
pageinVisualWebDeveloper,itstartsuptheASP.NETDevelopment
Serverlocally,whichinturncanreadfilesfromaremotecomputer.
MicrosoftKnowledgeBasearticle810886
WhenItrytorunpagesonaremotecomputerusingtheASP.NET
DevelopmentServer,IgetanerrorthatsaystheBIOSlimithasbeen
exceeded.Whatistheproblem?

YoumightseethiserroriftheremotecomputerisrunningWindows2000or
WindowsXP.IftheremotecomputerisrunningWindows2000,youcan
followtheinstructionsinMicrosoftKnowledgeBasearticle810886toset
themaximumnumberofconcurrentconnectionstoahighernumber.Ifyou
arerunningWindowsXP,youmightbeabletoavoidthiserrorbyclosing
existingsharedresources,includingterminalserversessions,onthe
remotecomputer.(WindowsXPisconfiguredwithafixednumberof
maximumconcurrentnetworkrequests.)
GeneralASP.NETQuestions
WhatisASP.NET?
ASP.NETisaserversidetechnologyforcreatingdynamic,standards
basedWebsitesandservicesthatareaccessibleacrossmultiple
platformsincludingmobiledevices.Itispartofthe.NETbased
environmentyoucanauthorapplicationsinany.NETcompatiblelanguage,
includingVisualBasic.NET,C#,andJ#.Additionally,theentire.NET
FrameworkclasslibraryisavailabletoanyASP.NETapplication.
Developerscaneasilyaccessthebenefitsofthesetechnologies,which
includethemanagedcommonlanguageruntimeenvironment,typesafety,
inheritance,andsoon.

WhatsthedifferencebetweenASPandASP.NET?
ASP(ActiveServerPages)andASP.NETarebothserverside
technologiesforbuildingwebsitesandWebapplications,butASP.NETis
notsimplyanewversionofASP.ASP.NEThasbeenentirelyre
architectedtoprovideahighlyproductiveprogrammingexperiencebased
onthe.NETFramework,andarobustinfrastructureforbuildingreliableand
scalablewebapplications.ForanoverviewofASP.NETenhancements
clickhere.
HowdoIgetASP.NET?
YoucangetASP.NETbyinstallingtheMicrosoft.NETFramework.The
.NETFrameworkisavailableineitheraredistributableorSDKformat.See
thisoverviewtolearnmoreandinstallthe.NETFramework.
HowmuchdoesASP.NETcost?
ASP.NETispartoftheMicrosoft.NETFramework.The.NETFramework
isafeatureofWindows,andisavailablefordownloadatnochargefrom
thissite.YoucandevelopASP.NETsitesusingatexteditor,butifyoure
lookingforadevelopmenttoolpleaseseeWhichdevelopmenttoolssupport
ASP.NET?
WhatoperatingsystemsdoesASP.NETrunon?
ASP.NETrunsonWindowsServer2000,WindowsServer2003,and
WindowsXPProfessional.WindowsXPHomeisalsosupportedfor
developmentonlyusingVisualWebDeveloperExpressEditiontool(which
isavailablefordownload)orVisualStudio2005.
CanIdevelopmyASP.NETpagesinNotepad,ordoIneedtobuy
VisualStudio?

Yes,youcanuseanytexteditortocreateASP.NETpages.However,you
mayfindyourselfmoreproductiveifyouuseadedicatedtool,suchas
VisualWebDeveloperExpressEditionorVisualStudio.
I'veinstalledthe.NETFramework,butASP.NETdoesn'tseemtowork.
WhatcanIdotofixit?
YoumusthaveIIS(InternetInformationServices)installedbeforeyou
installthe.NETFramework.IfyouinstallIISafteryouinstallthe.NET
Framework,youmustalsoregistertheASP.NETextensionswithIIS.You
candothisbyrunningtheaspnet_regiisexecutablefrom:%windowsroot
directory%\Microsoft.NET\Framework\%versionofthe.NET
Framework%\aspnet_regiisrwhere%windowsrootdirectory%isthe
directoryWindowsisinstalledto(typicallyc:\windowsorc:\winnt)and
%versionofthe.NETFramework%istheversionofthe.NETFramework
youhaveinstalled.Thedirectoryfor.NET1.0isv1.0.3705,for1.1is
v1.1.4322,andfor2.0isv2.0.50727.
WhereshouldIputtheconnectionstringtomydatabaseformyASP.NET
app?
Keepinmindthatsecuringyourconnectionstringwillpreventhackersfrom
accessinginformationinyourdatabases.Forv1.x,thesectiontitled
StoringDatabaseConnectionStringsSecurelyfromBuildingSecure
ASP.NETApplications:Authentication,Authorization,andSecure
Communicationoutlinesmanygoodtechniquesforprotectingthisvaluable
resource.Forv2.0,thewalkthroughEncryptingConfigurationInformation
UsingProtectedConfigurationintroducesProtectedConfigurationandthe
newconnectionStringsconfigurationsectionasthepreferredsolutionfor
storingconnectionstringinformationinconfigurationfiles.
WhichdevelopmenttoolssupportASP.NET?
YoucandevelopASP.NETsitesinanytexteditor,butMicrosoftVisual
StudioandVisualWebDeveloperExpressEdition(availablefordownload)
providerichsupportforthecompleteASP.NETplatformmaking
developmentmoreproductiveandefficient.Aswell,Macromedia
DreamweaverMXandBorlandC#BuilderalsoofferASP.NETdevelopment
support.
Arethereanyprebuiltapplicationsorcodesamplesavailablefor
ASP.NET?
TheASP.NETVisualWebDeveloperStarterKitsaresampleapplications
availablecompletewithsourcecodetoshowyouhowtobuildrealworld
sitesusingASP.NETusingVisualStudioorVisualWebDeveloper
ExpressEdition.YoumightalsobeinterestedinDotNetNuke,afree
contentmanagementsystembuiltonASP.NET.Lastly,thereis
CommunityServer,aplatformforrapidlyenablingonlinecommunities,
whichincludesdiscussionforums,emaillists,newsgroups,blogs,file
galleries,andmore.
WherecanIfindwebhostersthatsupportASP.NET?
Havealookatwww.asp.net/hosters
GeneralIISQuestions
Thistipcomesfromthe11/23/2004editionoftheIISAnswersNewsletter.
Youcansubscribetothenewsletterorfindmoreinformationat
http://www.iisanswers.com.
ViewingCustomHeaders
Q:IhaveanIIS6ServerCluster.I'mtryingtomakeagenerictestpage
thatwillshowmetheclustermemberI'mon.Ifiguredagoodwaytodothis
istoassignaCustomHeaderVariabletoIISsuchas"Node:"withavalue
of"1"or"2"or"3,"etc.
I'vebeenonGoogleallmorningandIcan'tfigureouthowtodisplaythe
value.Thevalueisaddedtotheresponseobjectsenttotheclientandit
seemstohappenaftertheASPscriptiscompletedsoIcan'tdoitserver
side.Ihaven'tbeenabletofindanythingwithclientsideJavaScriptabout
viewingheaderinformation.
A:Thecustomhttpheadersaremeantfortheclient[browser],notforthe

ASPengine.Infact,fromwhatIcantell,asp.dlloraspnet_isapi.dlldoesn't
haveaccesstothecustomheadersetupinIIS(exceptusingADSI/WMI,
butthat'sdifferent).It'snotintheServerVariablescollectionsincethe
ServerVariablescollectionjustcontainswhatwasreceivedfromtheclient.
Checkoutthebottomtiphere:
http://www.computerbooksonline.com/tips/asp6.asp
"Asyoumayknow,youcanusetheAddHeadermethodoftheResponse
objecttoaddcustomhttpheaderstoyourWebpages,butthere'sa
"feature"youshouldbeawareofwhenyoudoso.TheServerVariables
collectionreturnedbytheRequestobjectonlycontainsheaderssentfrom
thebrowsertotheserver.Sinceyourcustomheaderwascreatedonthe
serverandthensenttothebrowser(theoppositedirection),yourheader
willneverbeaddedtotheServerVariablescollection.Youshouldbeaware
ofthisifyoueverplantointerrogatetheServerVariablescollection,
expectingtofindacustomheaderyoucreatedinthisway.Itwillneverbe
there,sosuchanapproachsimplywon'twork!"
Hereisanothergoodreference:
http://msdn.microsoft.com/library/default.asp?url=/library/enus/iissdk/iis/
ref_vbom_resomah.asp
Thekickeristhis:
"Youcanretrievetheheaderifaspecialclientreturnsittotheserveron
thenextrequest"
IcaughtSteveSchofieldbyIMandhegavemethisinformationfromthe
IIShelp:
"YoucanusethispropertytosendacustomHTTPheaderfromtheWeb
servertotheclientbrowser.Customheaderscanbeusedtosend
instructionsfromtheWebservertotheclientbrowserthatarenotyet
supportedinthecurrentHTTPspecification,suchasnewerHTTPheaders
thatIISmaynotinherentlysupportatthetimeoftheproduct'srelease.For
example,youcanuseacustomHTTPheadertoallowtheclientbrowserto
cachethepagebutpreventproxyserversfromcachingthepage."
BothSteveandIsetupsometestsandconfirmedthis.Anetworkcapture
confirmsthattheheaderissentbacktotheclient.
It'samatteroforderofoperation.TheISAPIFilters(whichaspandasp.net
runas)appeartobehigheronlistthanwhenIISappendstheheader.
BasicallyIISaddstheheaderontheway"out,"not"in."
Furtheronthis,iftheclient[browser]sendsacustomheader,itneedsto
beprefixedwithHTTP_toretrieveitwithinASP(.NET).
ItappearsfromtheMicrosoftlinkabovethatit'spossibletoreceivethe
headerfromtheclientandsendbacktotheserveronthe2ndpageview.I
testedusingaPOSTandGETbutneitherappearedtoworkforme.I
assumethatitdoesn'thappenautomaticallywithIEandwouldrequirea
customclienttooltohandlethis.
JavaScriptshouldbeabletogetthisbecauseJavaScriptrunsafterIIS
addedtheheader.
So,insummary,HTTPcustomheaderscan'tbeusedwithinASPforany
typeoflogic.It'ssomethingusedfortheClientandnottheServer.

No comments yet

Add a comment

Home
Subscribeto:PostComments(Atom)

OlderPost

Potrebbero piacerti anche