| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>
- </ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{C1532D58-F3E4-486D-A798-BDEC101188A9}</ProjectGuid>
- <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>HySoft.BaseCallCenter.Web</RootNamespace>
- <AssemblyName>HySoft.BaseCallCenter.Web</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <TargetFrameworkProfile />
- <SccProjectName>
- </SccProjectName>
- <SccLocalPath>
- </SccLocalPath>
- <SccAuxPath>
- </SccAuxPath>
- <SccProvider>
- </SccProvider>
- <UseIISExpress>true</UseIISExpress>
- <FileUpgradeFlags>
- </FileUpgradeFlags>
- <UpgradeBackupLocation>
- </UpgradeBackupLocation>
- <OldToolsVersion>4.0</OldToolsVersion>
- <IISExpressSSLPort />
- <IISExpressAnonymousAuthentication />
- <IISExpressWindowsAuthentication />
- <IISExpressUseClassicPipelineMode>true</IISExpressUseClassicPipelineMode>
- <UseGlobalApplicationHostFile />
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="AjaxPro.2">
- <HintPath>..\..\dll\AjaxPro.2.dll</HintPath>
- </Reference>
- <Reference Include="AspNetPager, Version=7.4.3.0, Culture=neutral, PublicKeyToken=fb0a0fe055d40fd4, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>dll\AspNetPager.dll</HintPath>
- </Reference>
- <Reference Include="AspNetPager.resources">
- <HintPath>dll\AspNetPager.resources.dll</HintPath>
- </Reference>
- <Reference Include="LitJSON, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>dll\LitJSON.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Data" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Runtime.Serialization" />
- <Reference Include="System.Transactions" />
- <Reference Include="System.Web" />
- <Reference Include="System.Web.ApplicationServices" />
- <Reference Include="System.Web.DynamicData" />
- <Reference Include="System.Web.Entity" />
- <Reference Include="System.Web.Extensions" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Configuration" />
- <Reference Include="System.Web.Services" />
- <Reference Include="System.EnterpriseServices" />
- <Reference Include="System.Web.Mobile" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="WFEngine, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\WFDLL\WFEngine.dll</HintPath>
- </Reference>
- <Reference Include="WOSBusineSupporter, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\WFDLL\WOSBusineSupporter.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="askmanage\ajax\pagerview.aspx" />
- <Content Include="askmanage\pageredit.aspx" />
- <Content Include="askmanage\pagermanage.aspx" />
- <Content Include="askmanage\pagerview.aspx" />
- <Content Include="askmanage\questioncategoryedit.aspx" />
- <Content Include="askmanage\questionedit.aspx" />
- <Content Include="askmanage\questionmanage.aspx" />
- <Content Include="askmanage\_controls\ctl_pagerview.ascx" />
- <Content Include="bin\AjaxPro.2.dll" />
- <Content Include="bin\AspNetPager.dll" />
- <Content Include="bin\AspNetPager.resources.dll" />
- <Content Include="bin\HySoft.BaseCallCenter.BLL.dll" />
- <Content Include="bin\HySoft.BaseCallCenter.BLL.pdb" />
- <Content Include="bin\HySoft.BaseCallCenter.DAL.dll" />
- <Content Include="bin\HySoft.BaseCallCenter.DAL.pdb" />
- <Content Include="bin\HySoft.BaseCallCenter.Model.dll" />
- <Content Include="bin\HySoft.BaseCallCenter.Model.pdb" />
- <Content Include="bin\HySoft.BaseCallCenter.Web.dll" />
- <Content Include="bin\HySoft.BaseCallCenter.Web.pdb" />
- <Content Include="bin\HySoft.Common.dll" />
- <Content Include="bin\HySoft.Common.pdb" />
- <Content Include="bin\HySoft.DBUtility.dll" />
- <Content Include="bin\HySoft.DBUtility.pdb" />
- <Content Include="bin\LitJSON.dll" />
- <Content Include="bin\WFEngine.dll" />
- <Content Include="bin\WOSBusineSupporter.dll" />
- <Content Include="calloutmanage\ajax\callplanresultdata.aspx" />
- <Content Include="calloutmanage\calloutopt.aspx" />
- <Content Include="calloutmanage\calloutoptrecordlist.aspx" />
- <Content Include="calloutmanage\calloutoptshow.aspx" />
- <Content Include="calloutmanage\callplanedit.aspx" />
- <Content Include="calloutmanage\callplanfpset.aspx" />
- <Content Include="calloutmanage\callplanintophone.aspx" />
- <Content Include="calloutmanage\callplanmanage.aspx" />
- <Content Include="calloutmanage\callplanpageitems.aspx" />
- <Content Include="calloutmanage\callplantaskmylist.aspx" />
- <Content Include="calloutmanage\callplantaskresult.aspx" />
- <Content Include="calloutmanage\callplantaskresultdata.aspx" />
- <Content Include="calloutmanage\callplantaskresultdataexcel.aspx" />
- <Content Include="calloutmanage\callplantaskresultsearch.aspx" />
- <Content Include="calloutmanage\callplanwebset.aspx" />
- <Content Include="calloutmanage\_controls\callplanresultdata.ascx" />
- <Content Include="center.aspx" />
- <Content Include="charts\chartLine.swf" />
- <Content Include="charts\Column2D.swf" />
- <Content Include="charts\FCF_Bar2D.swf" />
- <Content Include="charts\FCF_Column2D.swf" />
- <Content Include="charts\FCF_Column3D.swf" />
- <Content Include="charts\FCF_Column3Ds.swf" />
- <Content Include="charts\FCF_Line.swf" />
- <Content Include="charts\FCF_MSColumn2D.swf" />
- <Content Include="charts\FCF_MSColumn3D.swf" />
- <Content Include="charts\FCF_MSLine.swf" />
- <Content Include="charts\FCF_Pie2D.swf" />
- <Content Include="charts\FCF_Pie3D.swf" />
- <Content Include="charts\pie3d.swf" />
- <Content Include="config\uupaotui.xml">
- <SubType>Designer</SubType>
- </Content>
- <Content Include="css\animate.css" />
- <Content Include="css\easyui.css" />
- <Content Include="css\import_basic.css" />
- <Content Include="css\style.css" />
- <Content Include="css\tc.css" />
- <Content Include="customermanage\categorylist.aspx" />
- <Content Include="customermanage\customeredit.aspx" />
- <Content Include="customermanage\customerimport.aspx" />
- <Content Include="customermanage\customerlist.aspx" />
- <Content Include="customermanage\customermodify.aspx" />
- <Content Include="customermanage\customerpersonlist.aspx" />
- <Content Include="customermanage\customerSYNC.aspx" />
- <Content Include="customermanage\historyserviceinfo.aspx" />
- <Content Include="customermanage\personedit.aspx" />
- <Content Include="customermanage\personlist.aspx" />
- <Content Include="customermanage\personmodify.aspx" />
- <Content Include="customermanage\regionlist.aspx" />
- <Content Include="default.aspx" />
- <Content Include="expendmanage\expandAddandEdit.aspx" />
- <Content Include="expendmanage\expandlist.aspx" />
- <Content Include="faxmanage\css\global.css" />
- <Content Include="faxmanage\faxcustomer.aspx" />
- <Content Include="faxmanage\faxdown.aspx" />
- <Content Include="faxmanage\FaxPublicList.aspx" />
- <Content Include="faxmanage\FaxReceive.aspx" />
- <Content Include="faxmanage\faxreceiveshow.aspx" />
- <Content Include="faxmanage\FaxSend.aspx" />
- <Content Include="faxmanage\FaxSendAlready.aspx" />
- <Content Include="faxmanage\faxsendshow.aspx" />
- <Content Include="faxmanage\FaxSendTask.aspx" />
- <Content Include="faxmanage\faxtoimage.aspx" />
- <Content Include="faxmanage\images\add.png" />
- <Content Include="faxmanage\images\botom.png" />
- <Content Include="faxmanage\images\jian.png" />
- <Content Include="faxmanage\images\left.png" />
- <Content Include="faxmanage\images\pre.png" />
- <Content Include="faxmanage\images\right.png" />
- <Content Include="faxmanage\images\rotation.png" />
- <Content Include="faxmanage\images\top.png" />
- <Content Include="firstlogin.aspx" />
- <Content Include="formmanage\attributeedit.aspx" />
- <Content Include="formmanage\entityedit.aspx" />
- <Content Include="formmanage\entitylist.aspx" />
- <Content Include="formmanage\formlist.aspx" />
- <Content Include="formmanage\formset.aspx" />
- <Content Include="iframeocx.aspx" />
- <Content Include="images\add.png" />
- <Content Include="images\agent0.png" />
- <Content Include="images\agent1.png" />
- <Content Include="images\Arrow_left_16.png" />
- <Content Include="images\Arrow_right_16.png" />
- <Content Include="images\btn_dis_lookup.gif" />
- <Content Include="images\btn_off_lookup.gif" />
- <Content Include="images\btn_on_lookup.gif" />
- <Content Include="images\check_box_24.png" />
- <Content Include="images\check_list_16.png" />
- <Content Include="images\close.gif" />
- <Content Include="images\default_09_02.png" />
- <Content Include="images\dialog_question_24.png" />
- <Content Include="images\dot0913.png.gif" />
- <Content Include="images\full_screen_24.png" />
- <Content Include="images\full_screen_exit_24.png" />
- <Content Include="images\guanbi001.png" />
- <Content Include="images\guanbi002.png" />
- <Content Include="images\guanbi003.png" />
- <Content Include="images\guanbi004.png" />
- <Content Include="images\guanbi005.png" />
- <Content Include="images\guanbi006.png" />
- <Content Include="images\head_bg_20170612.gif" />
- <Content Include="images\head_uu.png" />
- <Content Include="images\help_question_mark_24.png" />
- <Content Include="images\ico_16_2.gif" />
- <Content Include="images\kkback.gif" />
- <Content Include="images\kk_01.gif" />
- <Content Include="images\logo_image.gif" />
- <Content Include="images\logo_uu.png" />
- <Content Include="images\notice.png" />
- <Content Include="images\page_FL1.gif" />
- <Content Include="images\page_L1.gif" />
- <Content Include="images\page_LL1.gif" />
- <Content Include="images\page_R1.gif" />
- <Content Include="images\phone.png" />
- <Content Include="images\phone1.png" />
- <Content Include="images\phone3.png" />
- <Content Include="images\radio_button_off_16.png" />
- <Content Include="images\radio_button_on_16.png" />
- <Content Include="images\reportimg\01.png" />
- <Content Include="images\reportimg\02.png" />
- <Content Include="images\reportimg\03.png" />
- <Content Include="images\reportimg\04.png" />
- <Content Include="images\reportimg\05.png" />
- <Content Include="images\reportimg\06.png" />
- <Content Include="images\reportimg\07.png" />
- <Content Include="images\reportimg\08.png" />
- <Content Include="images\reportimg\09.png" />
- <Content Include="images\seatimgs\dj1.png" />
- <Content Include="images\seatimgs\dj2.png" />
- <Content Include="images\seatimgs\jt1.png" />
- <Content Include="images\seatimgs\jt2.png" />
- <Content Include="images\seatimgs\kongxian.jpg" />
- <Content Include="images\seatimgs\lj1.png" />
- <Content Include="images\seatimgs\lj2.png" />
- <Content Include="images\seatimgs\mang.jpg" />
- <Content Include="images\seatimgs\Mtzm1.png" />
- <Content Include="images\seatimgs\Mtzm2.png" />
- <Content Include="images\seatimgs\Mtzx1.png" />
- <Content Include="images\seatimgs\Mtzx2.png" />
- <Content Include="images\seatimgs\qc1.png" />
- <Content Include="images\seatimgs\qc2.png" />
- <Content Include="images\seatimgs\qz1.png" />
- <Content Include="images\seatimgs\qz2.png" />
- <Content Include="images\seatimgs\qzlx1.png" />
- <Content Include="images\seatimgs\qzlx2.png" />
- <Content Include="images\seatimgs\tonghua.jpg" />
- <Content Include="images\seatimgs\weiqianru.jpg" />
- <Content Include="images\seatimgs\wh1.png" />
- <Content Include="images\seatimgs\wh2.png" />
- <Content Include="images\seatimgs\zhenglin.jpg" />
- <Content Include="images\seatimgs\zm1.png" />
- <Content Include="images\seatimgs\zm2.png" />
- <Content Include="images\seatimgs\zx1.png" />
- <Content Include="images\seatimgs\zx2.png" />
- <Content Include="images\server0.png" />
- <Content Include="images\server1.png" />
- <Content Include="images\sign_check_24.png" />
- <Content Include="images\start72.png" />
- <Content Include="images\stop72.png" />
- <Content Include="images\tabs_bg1.jpg" />
- <Content Include="images\tabs_bg2.jpg" />
- <Content Include="images\telephone.png" />
- <Content Include="images\telphoto_07.gif" />
- <Content Include="images\tel_menu1.png" />
- <Content Include="images\tel_menu2.png" />
- <Content Include="images\totle\bc1.png" />
- <Content Include="images\totle\bc2.png" />
- <Content Include="images\totle\bc3.png" />
- <Content Include="images\totle\cs1.png" />
- <Content Include="images\totle\cs2.png" />
- <Content Include="images\totle\cs3.png" />
- <Content Include="images\totle\dfth1.png" />
- <Content Include="images\totle\dfth2.png" />
- <Content Include="images\totle\dfth3.png" />
- <Content Include="images\totle\gd1.png" />
- <Content Include="images\totle\gd2.png" />
- <Content Include="images\totle\gd3.png" />
- <Content Include="images\totle\jh1.png" />
- <Content Include="images\totle\jh2.png" />
- <Content Include="images\totle\jh3.png" />
- <Content Include="images\totle\jsgd.png" />
- <Content Include="images\totle\ldyy1.png" />
- <Content Include="images\totle\ldyy3.png" />
- <Content Include="images\totle\order1.png" />
- <Content Include="images\totle\order3.png" />
- <Content Include="images\totle\qc1.png" />
- <Content Include="images\totle\qc2.png" />
- <Content Include="images\totle\qc3.png" />
- <Content Include="images\totle\qr1.png" />
- <Content Include="images\totle\qr2.png" />
- <Content Include="images\totle\qr3.png" />
- <Content Include="images\totle\sgzd.png" />
- <Content Include="images\totle\thjl1.png" />
- <Content Include="images\totle\thjl3.png" />
- <Content Include="images\totle\wh1.png" />
- <Content Include="images\totle\wh2.png" />
- <Content Include="images\totle\wh3.png" />
- <Content Include="images\totle\zm1.png" />
- <Content Include="images\totle\zm2.png" />
- <Content Include="images\totle\zm3.png" />
- <Content Include="images\totle\zsk.png" />
- <Content Include="images\totle\zsk1.png" />
- <Content Include="images\totle\zx1.png" />
- <Content Include="images\totle\zx2.png" />
- <Content Include="images\totle\zx3.png" />
- <Content Include="images\totle\zy1.png" />
- <Content Include="images\totle\zy2.png" />
- <Content Include="images\totle\zy3.png" />
- <Content Include="images\uu_head.png" />
- <Content Include="images\wjdc.jpg" />
- <Content Include="images\Zoom_In_32.png" />
- <Content Include="images\Zoom_Out_32.png" />
- <Content Include="images\zx1.png" />
- <Content Include="images\zx2.png" />
- <Content Include="images\zx3.png" />
- <Content Include="images\zx4.png" />
- <Content Include="knowledgemanage\knowledgeclass.aspx" />
- <Content Include="knowledgemanage\knowledgeclassAddandEdit.aspx" />
- <Content Include="knowledgemanage\knowledgelist.aspx" />
- <Content Include="knowledgemanage\knowledgelistAddandEdit.aspx" />
- <Content Include="knowledgemanage\knowledgesearch.aspx" />
- <Content Include="knowledgemanage\knowledgeview.aspx" />
- <Content Include="login.aspx" />
- <Content Include="noticemanage\noticeinfoedit.aspx" />
- <Content Include="noticemanage\noticeinfoview.aspx" />
- <Content Include="noticemanage\noticelistview.aspx" />
- <Content Include="noticemanage\noticemanagelist.aspx" />
- <Content Include="noticemanage\selectusers.aspx" />
- <Content Include="outsysurl.aspx" />
- <Content Include="qualitymanage\indexcategoryedit.aspx" />
- <Content Include="qualitymanage\indexedit.aspx" />
- <Content Include="qualitymanage\indexmanage.aspx" />
- <Content Include="qualitymanage\qcedit.aspx" />
- <Content Include="qualitymanage\qcmanage.aspx" />
- <Content Include="qualitymanage\qcresmanage.aspx" />
- <Content Include="qualitymanage\QcResultList.aspx" />
- <Content Include="qualitymanage\qcshow.aspx" />
- <Content Include="reportmanage\acceptancereport.aspx" />
- <Content Include="reportmanage\ajax\callinreport.aspx" />
- <Content Include="reportmanage\ajax\newcallinreport.aspx" />
- <Content Include="reportmanage\callerdealreport.aspx" />
- <Content Include="reportmanage\callratereport.aspx" />
- <Content Include="reportmanage\callreports\callinreasonreport.aspx" />
- <Content Include="reportmanage\callreports\callinreport.aspx" />
- <Content Include="reportmanage\callreports\checkindetailreport.aspx" />
- <Content Include="reportmanage\callreports\checkinreport.aspx" />
- <Content Include="reportmanage\callreports\newcallinreport.aspx" />
- <Content Include="reportmanage\callreports\teletraffic.aspx" />
- <Content Include="reportmanage\callreports\workorderreport.aspx" />
- <Content Include="reportmanage\dataanalysis\BasicEngineerWorkOrder.aspx" />
- <Content Include="reportmanage\dataanalysis\CallInDept.aspx" />
- <Content Include="reportmanage\dataanalysis\CallInPerson.aspx" />
- <Content Include="reportmanage\dataanalysis\DepartmentWorkOrder.aspx" />
- <Content Include="reportmanage\dataanalysis\ExecutionEfficiency.aspx" />
- <Content Include="reportmanage\dataanalysis\KnowledgeSediment.aspx" />
- <Content Include="reportmanage\dataanalysis\WorkOrderDistribution.aspx" />
- <Content Include="reportmanage\longwaitreport.aspx" />
- <Content Include="reportmanage\losscalldetailreport.aspx" />
- <Content Include="reportmanage\operationdata\CallRecInfList.aspx" />
- <Content Include="reportmanage\operationdata\OneUserAPI.aspx" />
- <Content Include="reportmanage\operationdata\OneUserDepartmentAPI.aspx" />
- <Content Include="reportmanage\operationdata\TowUserAPI.aspx" />
- <Content Include="reportmanage\operationdata\TowUserDepartmentAPI.aspx" />
- <Content Include="reportmanage\operationdata\TowUserGZL.aspx" />
- <Content Include="reportmanage\operationdata\YearContrast.aspx" />
- <Content Include="reportmanage\operationdata\YearContrastPic.aspx" />
- <Content Include="reportmanage\operationdata\ZuoXiManYiDu.aspx" />
- <Content Include="reportmanage\operationdata\ZuoXiTongHua.aspx" />
- <Content Include="reportmanage\operationdata\ZuoXiWorkTotal.aspx" />
- <Content Include="reportmanage\switchedlosscallreport.aspx" />
- <Content Include="reportmanage\talktimereport.aspx" />
- <Content Include="reportmanage\totalcallreport.aspx" />
- <Content Include="reportmanage\_controls\callinreport.ascx" />
- <Content Include="reportmanage\_controls\newcallinreport.ascx" />
- <Content Include="scripts\CustomersData.js" />
- <Content Include="scripts\jquery\cancel.png" />
- <Content Include="scripts\jquery\jquery.easyui.min.js" />
- <Content Include="scripts\jquery\jquery.min.js" />
- <Content Include="scripts\jquery\jquery.uploadify.min.js" />
- <Content Include="scripts\jquery\swfobject.js" />
- <Content Include="scripts\jquery\uploadify.css" />
- <Content Include="scripts\jquery\uploadify.swf" />
- <Content Include="scripts\ui\json2.js" />
- <Content Include="scripts\ui\js\base.js" />
- <Content Include="scripts\ui\js\core\base.js" />
- <Content Include="scripts\ui\js\core\inject.js" />
- <Content Include="scripts\ui\js\ligerDrag.js" />
- <Content Include="scripts\ui\js\ligerui.all.js" />
- <Content Include="scripts\ui\js\ligerui.min.js" />
- <Content Include="scripts\ui\js\plugins\ligerAccordion.js" />
- <Content Include="scripts\ui\js\plugins\ligerButton.js" />
- <Content Include="scripts\ui\js\plugins\ligerCheckBox.js" />
- <Content Include="scripts\ui\js\plugins\ligerCheckBoxList.js" />
- <Content Include="scripts\ui\js\plugins\ligerComboBox.js" />
- <Content Include="scripts\ui\js\plugins\ligerDateEditor.js" />
- <Content Include="scripts\ui\js\plugins\ligerDialog.js" />
- <Content Include="scripts\ui\js\plugins\ligerDrag.js" />
- <Content Include="scripts\ui\js\plugins\ligerEasyTab.js" />
- <Content Include="scripts\ui\js\plugins\ligerFilter.js" />
- <Content Include="scripts\ui\js\plugins\ligerForm.js" />
- <Content Include="scripts\ui\js\plugins\ligerGrid.js" />
- <Content Include="scripts\ui\js\plugins\ligerLayout.js" />
- <Content Include="scripts\ui\js\plugins\ligerListBox.js" />
- <Content Include="scripts\ui\js\plugins\ligerMenu.js" />
- <Content Include="scripts\ui\js\plugins\ligerMenuBar.js" />
- <Content Include="scripts\ui\js\plugins\ligerMessageBox.js" />
- <Content Include="scripts\ui\js\plugins\ligerPanel.js" />
- <Content Include="scripts\ui\js\plugins\ligerPopupEdit.js" />
- <Content Include="scripts\ui\js\plugins\ligerPortal.js" />
- <Content Include="scripts\ui\js\plugins\ligerRadio.js" />
- <Content Include="scripts\ui\js\plugins\ligerRadioList.js" />
- <Content Include="scripts\ui\js\plugins\ligerResizable.js" />
- <Content Include="scripts\ui\js\plugins\ligerSpinner.js" />
- <Content Include="scripts\ui\js\plugins\ligerTab.js" />
- <Content Include="scripts\ui\js\plugins\ligerTextBox.js" />
- <Content Include="scripts\ui\js\plugins\ligerTip.js" />
- <Content Include="scripts\ui\js\plugins\ligerToolBar.js" />
- <Content Include="scripts\ui\js\plugins\ligerTree.js" />
- <Content Include="scripts\ui\js\plugins\ligerWindow.js" />
- <Content Include="scripts\ui\skins\Aqua\images\common\bigloading.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\button-disabled.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\button-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\button.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\drop-icons.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\exclamation.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\invalid-line.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\table.png" />
- <Content Include="scripts\ui\skins\Aqua\images\common\toggle.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-panel-title-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-panel-title-pressed.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-panel-title.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-tab-title-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-tab-title-pressed.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-tab-title.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-text.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-trigger-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-trigger-pressed.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\bg-trigger.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\btn-l.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\btn-r.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\btn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\button-bg-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\button-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\checkbox.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\dateeditor-bar-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\dateeditor-header-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\controls\radio.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dateeditor\date.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-first.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-last.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-next.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-prev.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\cross.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-select.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-unselect.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\spr_icons.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\panel-header2.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading2.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading3.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading4.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_55_fbf9ee_1x400.png" />
- <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_65_ffffff_1x400.png" />
- <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_75_dadada_1x400.png" />
- <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_75_e6e6e6_1x400.png" />
- <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_95_fef1ec_1x400.png" />
- <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_highlight-soft_75_cccccc_1x100.png" />
- <Content Include="scripts\ui\skins\Aqua\images\win\box-icons.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\box.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\dialog-bc.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\dialog-icons.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\dialog-tc.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\dialog-winbtns.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\dialog.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\dialogbtn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\taskbar-task.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\taskbar.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\win\taskbar.png" />
- <Content Include="scripts\ui\skins\Aqua\images\win\taskicon.gif" />
- <Content Include="scripts\ui\skins\Gray2014\css\all.css" />
- <Content Include="scripts\ui\skins\Gray2014\css\common.css" />
- <Content Include="scripts\ui\skins\Gray2014\css\dialog.css" />
- <Content Include="scripts\ui\skins\Gray2014\css\form.css" />
- <Content Include="scripts\ui\skins\Gray2014\css\grid.css" />
- <Content Include="scripts\ui\skins\Gray2014\css\layout.css" />
- <Content Include="scripts\ui\skins\Gray2014\css\tab.css" />
- <Content Include="scripts\ui\skins\Gray2014\images\gridheader.png" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\accordion-header.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\icon-close-over.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\icon-close.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\layout-header.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-bg.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-bg.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-left-bg.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-left-selected.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-right-bg.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-right-selected.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-selected.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\layout\togglebar.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\tab_arrow_spr.png" />
- <Content Include="scripts\ui\skins\Gray2014\images\tab_close.png" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\btn.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\button-disabled.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\button-over.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\button.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\button1.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\button2.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\date.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-bar.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-btn-over.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-btn.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-thead.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\grid-detail-close.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\grid-detail-open.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\gridalt.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\gridbar.jpg" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\grideditor.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-down.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-select.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-select2.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-unselect.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-up.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\input.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\inputdisabled.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\loading.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\loading2.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\loading3.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\loading4.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\loadingl.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\panel-btn.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\spr_icons.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\ui\trigger.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\win\dialog-winbtns.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\win\dialogbtn.gif" />
- <Content Include="scripts\ui\skins\Gray2014\images\win\dialogicon.gif" />
- <Content Include="scripts\ui\skins\Gray\css\all.css" />
- <Content Include="scripts\ui\skins\Gray\css\common.css" />
- <Content Include="scripts\ui\skins\Gray\css\dialog.css" />
- <Content Include="scripts\ui\skins\Gray\css\form.css" />
- <Content Include="scripts\ui\skins\Gray\css\grid.css" />
- <Content Include="scripts\ui\skins\Gray\css\layout.css" />
- <Content Include="scripts\ui\skins\Gray\css\tab.css" />
- <Content Include="scripts\ui\skins\Gray\images\layout\accordion-header.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\icon-close-over.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\icon-close.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\layout-header.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-bg.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-bg.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-left-bg.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-left-selected.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-right-bg.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-right-selected.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-selected.gif" />
- <Content Include="scripts\ui\skins\Gray\images\layout\togglebar.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\btn.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\button-disabled.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\button-over.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\button.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\button1.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\button2.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-bar.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-btn-over.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-btn.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-thead.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\grid-detail-close.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\grid-detail-open.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\gridalt.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\gridbar.jpg" />
- <Content Include="scripts\ui\skins\Gray\images\ui\grideditor.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\icon-down.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\icon-select.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\icon-unselect.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\icon-up.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\input.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\inputdisabled.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\loading.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\loading2.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\loading3.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\loading4.gif" />
- <Content Include="scripts\ui\skins\Gray\images\ui\trigger.gif" />
- <Content Include="scripts\ui\skins\Gray\images\win\dialog-winbtns.gif" />
- <Content Include="scripts\ui\skins\Gray\images\win\dialogbtn.gif" />
- <Content Include="scripts\ui\skins\Gray\images\win\dialogicon.gif" />
- <Content Include="scripts\ui\skins\icons\16_excel.gif" />
- <Content Include="scripts\ui\skins\icons\add.gif" />
- <Content Include="scripts\ui\skins\icons\AddToLiveCalendar.gif" />
- <Content Include="scripts\ui\skins\icons\archives.gif" />
- <Content Include="scripts\ui\skins\icons\attibutes.gif" />
- <Content Include="scripts\ui\skins\icons\back.gif" />
- <Content Include="scripts\ui\skins\icons\bluebook.gif" />
- <Content Include="scripts\ui\skins\icons\bookpen.gif" />
- <Content Include="scripts\ui\skins\icons\busy.gif" />
- <Content Include="scripts\ui\skins\icons\calendar.gif" />
- <Content Include="scripts\ui\skins\icons\candle.gif" />
- <Content Include="scripts\ui\skins\icons\coffee.gif" />
- <Content Include="scripts\ui\skins\icons\comment.gif" />
- <Content Include="scripts\ui\skins\icons\communication.gif" />
- <Content Include="scripts\ui\skins\icons\config.gif" />
- <Content Include="scripts\ui\skins\icons\customers.gif" />
- <Content Include="scripts\ui\skins\icons\cut.gif" />
- <Content Include="scripts\ui\skins\icons\database.gif" />
- <Content Include="scripts\ui\skins\icons\delete.gif" />
- <Content Include="scripts\ui\skins\icons\discuss.gif" />
- <Content Include="scripts\ui\skins\icons\down.gif" />
- <Content Include="scripts\ui\skins\icons\edit.gif" />
- <Content Include="scripts\ui\skins\icons\graywarn.gif" />
- <Content Include="scripts\ui\skins\icons\greenwarn.gif" />
- <Content Include="scripts\ui\skins\icons\help.gif" />
- <Content Include="scripts\ui\skins\icons\home.gif" />
- <Content Include="scripts\ui\skins\icons\left.png" />
- <Content Include="scripts\ui\skins\icons\leftall.png" />
- <Content Include="scripts\ui\skins\icons\lock.gif" />
- <Content Include="scripts\ui\skins\icons\logout.gif" />
- <Content Include="scripts\ui\skins\icons\mailbox.gif" />
- <Content Include="scripts\ui\skins\icons\memeber.gif" />
- <Content Include="scripts\ui\skins\icons\modify.gif" />
- <Content Include="scripts\ui\skins\icons\msn.gif" />
- <Content Include="scripts\ui\skins\icons\myaccount.gif" />
- <Content Include="scripts\ui\skins\icons\ok.gif" />
- <Content Include="scripts\ui\skins\icons\outbox.gif" />
- <Content Include="scripts\ui\skins\icons\pager.gif" />
- <Content Include="scripts\ui\skins\icons\photograph.gif" />
- <Content Include="scripts\ui\skins\icons\plus.gif" />
- <Content Include="scripts\ui\skins\icons\prev.gif" />
- <Content Include="scripts\ui\skins\icons\print.gif" />
- <Content Include="scripts\ui\skins\icons\process.gif" />
- <Content Include="scripts\ui\skins\icons\qq.gif" />
- <Content Include="scripts\ui\skins\icons\refresh.gif" />
- <Content Include="scripts\ui\skins\icons\right.gif" />
- <Content Include="scripts\ui\skins\icons\right.png" />
- <Content Include="scripts\ui\skins\icons\rightall.png" />
- <Content Include="scripts\ui\skins\icons\role.gif" />
- <Content Include="scripts\ui\skins\icons\save-disabled.gif" />
- <Content Include="scripts\ui\skins\icons\save.gif" />
- <Content Include="scripts\ui\skins\icons\search.gif" />
- <Content Include="scripts\ui\skins\icons\search2.gif" />
- <Content Include="scripts\ui\skins\icons\settings.gif" />
- <Content Include="scripts\ui\skins\icons\true.gif" />
- <Content Include="scripts\ui\skins\icons\up.gif" />
- <Content Include="scripts\ui\skins\icons\view.gif" />
- <Content Include="scripts\ui\skins\ligerui-icons.css" />
- <Content Include="scripts\ui\skins\Silvery\css\form.css" />
- <Content Include="scripts\ui\skins\Silvery\css\grid.css" />
- <Content Include="scripts\ui\skins\Silvery\css\layout.css" />
- <Content Include="scripts\ui\skins\Silvery\css\style.css" />
- <Content Include="scripts\ui\skins\Silvery\images\form\checkboxradio.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\icon-down-over.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\icon-down.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\icon-up-over.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\icon-up.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\invalid_line.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-date-icon.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-down-icon.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-focus.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-l-focus.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-l-over.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-l.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-over.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-r-focus.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-r-over.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text-r.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\form\text.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\grid\gridheaderbg.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\accordion-header-over.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\accordion-header.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\layout-header-over.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\layout-header.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-bg.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-bg.jpg" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-left-bg.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-over-bg.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-right-bg.gif" />
- <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-tools.gif" />
- <Content Include="scripts\ui\skins\Tab\css\all.css" />
- <Content Include="scripts\ui\skins\Tab\css\dialog.css" />
- <Content Include="scripts\ui\skins\Tab\css\form.css" />
- <Content Include="scripts\ui\skins\Tab\css\grid.css" />
- <Content Include="scripts\ui\skins\Tab\css\tab.css" />
- <Content Include="scripts\ui\skins\Tab\images\gridheader.png" />
- <Content Include="scripts\ui\skins\Tab\images\layout\accordion-header.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\icon-close-over.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\icon-close.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\layout-header.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-bg.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-bg.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-left-bg.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-left-selected.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-right-bg.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-right-selected.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-selected.gif" />
- <Content Include="scripts\ui\skins\Tab\images\layout\togglebar.gif" />
- <Content Include="scripts\ui\skins\Tab\images\tab_arrow_spr.png" />
- <Content Include="scripts\ui\skins\Tab\images\tab_close.png" />
- <Content Include="scripts\ui\skins\Tab\images\ui\btn.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\button-disabled.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\button-over.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\button.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\button1.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\button2.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\date.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-bar.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-btn-over.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-btn.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-thead.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\grid-detail-close.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\grid-detail-open.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\gridalt.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\gridbar.jpg" />
- <Content Include="scripts\ui\skins\Tab\images\ui\grideditor.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\icon-down.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\icon-select.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\icon-select2.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\icon-unselect.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\icon-up.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\input.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\inputdisabled.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\loading.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\loading2.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\loading3.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\loading4.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\loadingl.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\spr_icons.gif" />
- <Content Include="scripts\ui\skins\Tab\images\ui\trigger.gif" />
- <Content Include="scripts\ui\skins\Tab\images\win\dialog-winbtns.gif" />
- <Content Include="scripts\ui\skins\Tab\images\win\dialogbtn.gif" />
- <Content Include="scripts\ui\skins\Tab\images\win\dialogicon.gif" />
- <Content Include="seatformjs\ocxevent.js" />
- <Content Include="seatformjs\ocxopt.js" />
- <Content Include="seatformjs\formopt.js" />
- <Content Include="smsmanage\smsSent.aspx" />
- <Content Include="smsmanage\SmsSentAlready.aspx" />
- <Content Include="smsmanage\SmsSentWeiFaSong.aspx" />
- <Content Include="smsmanage\smsTypeEdit.aspx" />
- <Content Include="smsmanage\smsTypeList.aspx" />
- <Content Include="smsmanage\UserEdit.aspx" />
- <Content Include="sysmanage\basedataedit.aspx" />
- <Content Include="sysmanage\basedatalist.aspx" />
- <Content Include="sysmanage\calllogs.aspx" />
- <Content Include="sysmanage\configedit.aspx" />
- <Content Include="sysmanage\configlist.aspx" />
- <Content Include="sysmanage\deptdeit.aspx" />
- <Content Include="sysmanage\deptlist.aspx" />
- <Content Include="sysmanage\DeptlistAddandEdit.aspx" />
- <Content Include="sysmanage\dictionarylistedit.aspx" />
- <Content Include="sysmanage\dictionarymanage.aspx" />
- <Content Include="sysmanage\dictionarytreeedit.aspx" />
- <Content Include="sysmanage\functionanniuedit.aspx" />
- <Content Include="sysmanage\functionmanage.aspx" />
- <Content Include="sysmanage\functiontreeedit.aspx" />
- <Content Include="sysmanage\loginlogs.aspx" />
- <Content Include="sysmanage\optlogs.aspx" />
- <Content Include="sysmanage\ResetPassword.aspx" />
- <Content Include="sysmanage\rolelist.aspx" />
- <Content Include="sysmanage\rolelistedit.aspx" />
- <Content Include="sysmanage\sysconfigedit.aspx" />
- <Content Include="sysmanage\sysconfigmanage.aspx" />
- <Content Include="sysmanage\userAllocationRole.aspx" />
- <Content Include="sysmanage\useredit.aspx" />
- <Content Include="sysmanage\userlist.aspx" />
- <Content Include="favicon.ico" />
- <Content Include="images\1.png" />
- <Content Include="images\arrow_left.png" />
- <Content Include="images\bg.jpg" />
- <Content Include="images\btn_bg.gif" />
- <Content Include="images\btn_ok.gif" />
- <Content Include="images\btn_ok_hover.gif" />
- <Content Include="images\calendar.js" />
- <Content Include="images\CheckCode.gif" />
- <Content Include="images\default_user_avatar.gif" />
- <Content Include="images\desktop.css" />
- <Content Include="images\folder.gif" />
- <Content Include="images\folder_open.gif" />
- <Content Include="images\foot_bg.gif" />
- <Content Include="images\head_bg.gif" />
- <Content Include="images\head_bg_line.gif" />
- <Content Include="images\head_logo.png" />
- <Content Include="images\home.gif" />
- <Content Include="images\hx.png" />
- <Content Include="images\ico-0.png" />
- <Content Include="images\ico-0_.png" />
- <Content Include="images\ico-1.png" />
- <Content Include="images\ico-1_.png" />
- <Content Include="images\ico-2.png" />
- <Content Include="images\ico-2_.png" />
- <Content Include="images\ico-3.png" />
- <Content Include="images\ico-3_.png" />
- <Content Include="images\ico-4.png" />
- <Content Include="images\ico-4_.png" />
- <Content Include="images\ico-5.png" />
- <Content Include="images\ico-5_.png" />
- <Content Include="images\ico-6.png" />
- <Content Include="images\ico-show-img.png" />
- <Content Include="images\ico-show-txt.png" />
- <Content Include="images\icon_asc.gif" />
- <Content Include="images\icon_attach.png" />
- <Content Include="images\icon_audit.gif" />
- <Content Include="images\icon_channel.png" />
- <Content Include="images\icon_comment.gif" />
- <Content Include="images\icon_correct.png" />
- <Content Include="images\icon_del.gif" />
- <Content Include="images\icon_del2.gif" />
- <Content Include="images\icon_desc.gif" />
- <Content Include="images\icon_disable.png" />
- <Content Include="images\icon_edit.gif" />
- <Content Include="images\icon_log.png" />
- <Content Include="images\icon_manaer.png" />
- <Content Include="images\icon_mark.png" />
- <Content Include="images\icon_msg.gif" />
- <Content Include="images\icon_no.png" />
- <Content Include="images\icon_plugin.png" />
- <Content Include="images\icon_setting.png" />
- <Content Include="images\icon_site.gif" />
- <Content Include="images\icon_templet.png" />
- <Content Include="images\icon_user.png" />
- <Content Include="images\icon_view.gif" />
- <Content Include="images\ie_update.jpg" />
- <Content Include="images\jd.css" />
- <Content Include="images\js_01.gif" />
- <Content Include="images\js_02.gif" />
- <Content Include="images\li_bg.gif" />
- <Content Include="images\loading.gif" />
- <Content Include="images\loading2.gif" />
- <Content Include="images\login.css" />
- <Content Include="images\login_bg.gif" />
- <Content Include="images\login_bg1.gif" />
- <Content Include="images\login_btn_bg.gif" />
- <Content Include="images\login_img.gif" />
- <Content Include="images\logo.gif" />
- <Content Include="images\memeber.gif" />
- <Content Include="images\menu_icons.gif" />
- <Content Include="images\msg_icon.gif" />
- <Content Include="images\nav_icon.gif" />
- <Content Include="images\new.gif" />
- <Content Include="images\noimg.gif" />
- <Content Include="images\order_speed.gif" />
- <Content Include="images\selfImg\resize.gif" />
- <Content Include="images\selfImg\runing.gif" />
- <Content Include="images\selfImg\tb.gif" />
- <Content Include="images\style.css" />
- <Content Include="images\st_x.png" />
- <Content Include="images\sx_s.png" />
- <Content Include="images\t.gif" />
- <Content Include="images\tabicons.png" />
- <Content Include="images\tools_bg.gif" />
- <Content Include="images\tools_btn_bg.gif" />
- <Content Include="images\tools_icon.gif" />
- <Content Include="images\upbtn_bg.gif" />
- <Content Include="images\upfile_bg.gif" />
- <Content Include="images\user_toolbar.gif" />
- <Content Include="images\_desktop\both.gif" />
- <Content Include="images\_desktop\btn_1.gif" />
- <Content Include="images\_desktop\btn_10.gif" />
- <Content Include="images\_desktop\btn_11.gif" />
- <Content Include="images\_desktop\btn_12.gif" />
- <Content Include="images\_desktop\btn_13.gif" />
- <Content Include="images\_desktop\btn_14.gif" />
- <Content Include="images\_desktop\btn_15.gif" />
- <Content Include="images\_desktop\btn_16.gif" />
- <Content Include="images\_desktop\btn_17.gif" />
- <Content Include="images\_desktop\btn_18.gif" />
- <Content Include="images\_desktop\btn_19.gif" />
- <Content Include="images\_desktop\btn_2.gif" />
- <Content Include="images\_desktop\btn_20.gif" />
- <Content Include="images\_desktop\btn_21.gif" />
- <Content Include="images\_desktop\btn_22.gif" />
- <Content Include="images\_desktop\btn_23.gif" />
- <Content Include="images\_desktop\btn_24.gif" />
- <Content Include="images\_desktop\btn_25.gif" />
- <Content Include="images\_desktop\btn_26.gif" />
- <Content Include="images\_desktop\btn_3.gif" />
- <Content Include="images\_desktop\btn_4.gif" />
- <Content Include="images\_desktop\btn_5.gif" />
- <Content Include="images\_desktop\btn_6.gif" />
- <Content Include="images\_desktop\btn_7.gif" />
- <Content Include="images\_desktop\btn_8.gif" />
- <Content Include="images\_desktop\btn_9.gif" />
- <Content Include="images\_desktop\corner_1.gif" />
- <Content Include="images\_desktop\corner_2.gif" />
- <Content Include="images\_desktop\corner_3.gif" />
- <Content Include="images\_desktop\corner_3_1.gif" />
- <Content Include="images\_desktop\corner_3_11.gif" />
- <Content Include="images\_desktop\corner_3_111.gif" />
- <Content Include="images\_desktop\corner_3_2.gif" />
- <Content Include="images\_desktop\corner_3_21.gif" />
- <Content Include="images\_desktop\corner_4.gif" />
- <Content Include="images\_desktop\corner_4_1.gif" />
- <Content Include="images\_desktop\corner_4_2.gif" />
- <Content Include="images\_desktop\corner_4_21.gif" />
- <Content Include="images\_desktop\down_1.gif" />
- <Content Include="images\_desktop\d_0.gif" />
- <Content Include="images\_desktop\l_0.gif" />
- <Content Include="images\_desktop\l_01.gif" />
- <Content Include="images\_desktop\l_1_1.gif" />
- <Content Include="images\_desktop\l_1_2.gif" />
- <Content Include="images\_desktop\l_2_1.gif" />
- <Content Include="images\_desktop\l_2_2.gif" />
- <Content Include="images\_desktop\l_2_3.gif" />
- <Content Include="images\_desktop\l_2_4.gif" />
- <Content Include="images\_desktop\l_2_5.gif" />
- <Content Include="images\_desktop\m_0.gif" />
- <Content Include="images\_desktop\r_0.gif" />
- <Content Include="images\_desktop\r_1.gif" />
- <Content Include="images\_desktop\r_2.gif" />
- <Content Include="images\_desktop\statusbar.gif" />
- <Content Include="images\_desktop\tableft10.gif" />
- <Content Include="images\_desktop\tableft11.gif" />
- <Content Include="images\_desktop\tableft12.gif" />
- <Content Include="images\_desktop\tabright10.gif" />
- <Content Include="images\_desktop\tabright11.gif" />
- <Content Include="images\_desktop\tabright12.gif" />
- <Content Include="images\_desktop\upr_01.gif" />
- <Content Include="images\_desktop\upr_1.gif" />
- <Content Include="images\_desktop\u_0.gif" />
- <Content Include="pagenull.aspx" />
- <Content Include="scripts\function.js" />
- <Content Include="scripts\FusionCharts.js" />
- <Content Include="scripts\idCard.js" />
- <Content Include="scripts\jquery\jquery-1.3.2.min.js" />
- <Content Include="scripts\jquery\jquery-1.8.3.min.js" />
- <Content Include="scripts\jquery\validate_expand.js" />
- <Content Include="scripts\My97DatePicker\calendar.js" />
- <Content Include="scripts\My97DatePicker\lang\en.js" />
- <Content Include="scripts\My97DatePicker\lang\zh-cn.js" />
- <Content Include="scripts\My97DatePicker\lang\zh-tw.js" />
- <Content Include="scripts\My97DatePicker\skin\datePicker.gif" />
- <Content Include="scripts\My97DatePicker\skin\default\datepicker.css" />
- <Content Include="scripts\My97DatePicker\skin\default\img.gif" />
- <Content Include="scripts\My97DatePicker\skin\WdatePicker.css" />
- <Content Include="scripts\My97DatePicker\skin\whyGreen\bg.jpg" />
- <Content Include="scripts\My97DatePicker\skin\whyGreen\datepicker.css" />
- <Content Include="scripts\My97DatePicker\skin\whyGreen\img.gif" />
- <Content Include="scripts\My97DatePicker\WdatePicker.js" />
- <Content Include="scripts\ui\js\ligerDialog.js" />
- <Content Include="css\Jcrop.gif" />
- <Content Include="css\jquery.Jcrop.css" />
- <Content Include="css\validate.css" />
- <Content Include="editor\kindeditor-min.js" />
- <Content Include="editor\kindeditor.js" />
- <Content Include="editor\lang\ar.js" />
- <Content Include="editor\lang\en.js" />
- <Content Include="editor\lang\zh_CN.js" />
- <Content Include="editor\lang\zh_TW.js" />
- <Content Include="editor\plugins\anchor\anchor.js" />
- <Content Include="editor\plugins\clearhtml\clearhtml.js" />
- <Content Include="editor\plugins\code\code.js" />
- <Content Include="editor\plugins\code\prettify.css" />
- <Content Include="editor\plugins\code\prettify.js" />
- <Content Include="editor\plugins\emoticons\emoticons.js" />
- <Content Include="editor\plugins\emoticons\images\0.gif" />
- <Content Include="editor\plugins\emoticons\images\1.gif" />
- <Content Include="editor\plugins\emoticons\images\10.gif" />
- <Content Include="editor\plugins\emoticons\images\100.gif" />
- <Content Include="editor\plugins\emoticons\images\101.gif" />
- <Content Include="editor\plugins\emoticons\images\102.gif" />
- <Content Include="editor\plugins\emoticons\images\103.gif" />
- <Content Include="editor\plugins\emoticons\images\104.gif" />
- <Content Include="editor\plugins\emoticons\images\105.gif" />
- <Content Include="editor\plugins\emoticons\images\106.gif" />
- <Content Include="editor\plugins\emoticons\images\107.gif" />
- <Content Include="editor\plugins\emoticons\images\108.gif" />
- <Content Include="editor\plugins\emoticons\images\109.gif" />
- <Content Include="editor\plugins\emoticons\images\11.gif" />
- <Content Include="editor\plugins\emoticons\images\110.gif" />
- <Content Include="editor\plugins\emoticons\images\111.gif" />
- <Content Include="editor\plugins\emoticons\images\112.gif" />
- <Content Include="editor\plugins\emoticons\images\113.gif" />
- <Content Include="editor\plugins\emoticons\images\114.gif" />
- <Content Include="editor\plugins\emoticons\images\115.gif" />
- <Content Include="editor\plugins\emoticons\images\116.gif" />
- <Content Include="editor\plugins\emoticons\images\117.gif" />
- <Content Include="editor\plugins\emoticons\images\118.gif" />
- <Content Include="editor\plugins\emoticons\images\119.gif" />
- <Content Include="editor\plugins\emoticons\images\12.gif" />
- <Content Include="editor\plugins\emoticons\images\120.gif" />
- <Content Include="editor\plugins\emoticons\images\121.gif" />
- <Content Include="editor\plugins\emoticons\images\122.gif" />
- <Content Include="editor\plugins\emoticons\images\123.gif" />
- <Content Include="editor\plugins\emoticons\images\124.gif" />
- <Content Include="editor\plugins\emoticons\images\125.gif" />
- <Content Include="editor\plugins\emoticons\images\126.gif" />
- <Content Include="editor\plugins\emoticons\images\127.gif" />
- <Content Include="editor\plugins\emoticons\images\128.gif" />
- <Content Include="editor\plugins\emoticons\images\129.gif" />
- <Content Include="editor\plugins\emoticons\images\13.gif" />
- <Content Include="editor\plugins\emoticons\images\130.gif" />
- <Content Include="editor\plugins\emoticons\images\131.gif" />
- <Content Include="editor\plugins\emoticons\images\132.gif" />
- <Content Include="editor\plugins\emoticons\images\133.gif" />
- <Content Include="editor\plugins\emoticons\images\134.gif" />
- <Content Include="editor\plugins\emoticons\images\14.gif" />
- <Content Include="editor\plugins\emoticons\images\15.gif" />
- <Content Include="editor\plugins\emoticons\images\16.gif" />
- <Content Include="editor\plugins\emoticons\images\17.gif" />
- <Content Include="editor\plugins\emoticons\images\18.gif" />
- <Content Include="editor\plugins\emoticons\images\19.gif" />
- <Content Include="editor\plugins\emoticons\images\2.gif" />
- <Content Include="editor\plugins\emoticons\images\20.gif" />
- <Content Include="editor\plugins\emoticons\images\21.gif" />
- <Content Include="editor\plugins\emoticons\images\22.gif" />
- <Content Include="editor\plugins\emoticons\images\23.gif" />
- <Content Include="editor\plugins\emoticons\images\24.gif" />
- <Content Include="editor\plugins\emoticons\images\25.gif" />
- <Content Include="editor\plugins\emoticons\images\26.gif" />
- <Content Include="editor\plugins\emoticons\images\27.gif" />
- <Content Include="editor\plugins\emoticons\images\28.gif" />
- <Content Include="editor\plugins\emoticons\images\29.gif" />
- <Content Include="editor\plugins\emoticons\images\3.gif" />
- <Content Include="editor\plugins\emoticons\images\30.gif" />
- <Content Include="editor\plugins\emoticons\images\31.gif" />
- <Content Include="editor\plugins\emoticons\images\32.gif" />
- <Content Include="editor\plugins\emoticons\images\33.gif" />
- <Content Include="editor\plugins\emoticons\images\34.gif" />
- <Content Include="editor\plugins\emoticons\images\35.gif" />
- <Content Include="editor\plugins\emoticons\images\36.gif" />
- <Content Include="editor\plugins\emoticons\images\37.gif" />
- <Content Include="editor\plugins\emoticons\images\38.gif" />
- <Content Include="editor\plugins\emoticons\images\39.gif" />
- <Content Include="editor\plugins\emoticons\images\4.gif" />
- <Content Include="editor\plugins\emoticons\images\40.gif" />
- <Content Include="editor\plugins\emoticons\images\41.gif" />
- <Content Include="editor\plugins\emoticons\images\42.gif" />
- <Content Include="editor\plugins\emoticons\images\43.gif" />
- <Content Include="editor\plugins\emoticons\images\44.gif" />
- <Content Include="editor\plugins\emoticons\images\45.gif" />
- <Content Include="editor\plugins\emoticons\images\46.gif" />
- <Content Include="editor\plugins\emoticons\images\47.gif" />
- <Content Include="editor\plugins\emoticons\images\48.gif" />
- <Content Include="editor\plugins\emoticons\images\49.gif" />
- <Content Include="editor\plugins\emoticons\images\5.gif" />
- <Content Include="editor\plugins\emoticons\images\50.gif" />
- <Content Include="editor\plugins\emoticons\images\51.gif" />
- <Content Include="editor\plugins\emoticons\images\52.gif" />
- <Content Include="editor\plugins\emoticons\images\53.gif" />
- <Content Include="editor\plugins\emoticons\images\54.gif" />
- <Content Include="editor\plugins\emoticons\images\55.gif" />
- <Content Include="editor\plugins\emoticons\images\56.gif" />
- <Content Include="editor\plugins\emoticons\images\57.gif" />
- <Content Include="editor\plugins\emoticons\images\58.gif" />
- <Content Include="editor\plugins\emoticons\images\59.gif" />
- <Content Include="editor\plugins\emoticons\images\6.gif" />
- <Content Include="editor\plugins\emoticons\images\60.gif" />
- <Content Include="editor\plugins\emoticons\images\61.gif" />
- <Content Include="editor\plugins\emoticons\images\62.gif" />
- <Content Include="editor\plugins\emoticons\images\63.gif" />
- <Content Include="editor\plugins\emoticons\images\64.gif" />
- <Content Include="editor\plugins\emoticons\images\65.gif" />
- <Content Include="editor\plugins\emoticons\images\66.gif" />
- <Content Include="editor\plugins\emoticons\images\67.gif" />
- <Content Include="editor\plugins\emoticons\images\68.gif" />
- <Content Include="editor\plugins\emoticons\images\69.gif" />
- <Content Include="editor\plugins\emoticons\images\7.gif" />
- <Content Include="editor\plugins\emoticons\images\70.gif" />
- <Content Include="editor\plugins\emoticons\images\71.gif" />
- <Content Include="editor\plugins\emoticons\images\72.gif" />
- <Content Include="editor\plugins\emoticons\images\73.gif" />
- <Content Include="editor\plugins\emoticons\images\74.gif" />
- <Content Include="editor\plugins\emoticons\images\75.gif" />
- <Content Include="editor\plugins\emoticons\images\76.gif" />
- <Content Include="editor\plugins\emoticons\images\77.gif" />
- <Content Include="editor\plugins\emoticons\images\78.gif" />
- <Content Include="editor\plugins\emoticons\images\79.gif" />
- <Content Include="editor\plugins\emoticons\images\8.gif" />
- <Content Include="editor\plugins\emoticons\images\80.gif" />
- <Content Include="editor\plugins\emoticons\images\81.gif" />
- <Content Include="editor\plugins\emoticons\images\82.gif" />
- <Content Include="editor\plugins\emoticons\images\83.gif" />
- <Content Include="editor\plugins\emoticons\images\84.gif" />
- <Content Include="editor\plugins\emoticons\images\85.gif" />
- <Content Include="editor\plugins\emoticons\images\86.gif" />
- <Content Include="editor\plugins\emoticons\images\87.gif" />
- <Content Include="editor\plugins\emoticons\images\88.gif" />
- <Content Include="editor\plugins\emoticons\images\89.gif" />
- <Content Include="editor\plugins\emoticons\images\9.gif" />
- <Content Include="editor\plugins\emoticons\images\90.gif" />
- <Content Include="editor\plugins\emoticons\images\91.gif" />
- <Content Include="editor\plugins\emoticons\images\92.gif" />
- <Content Include="editor\plugins\emoticons\images\93.gif" />
- <Content Include="editor\plugins\emoticons\images\94.gif" />
- <Content Include="editor\plugins\emoticons\images\95.gif" />
- <Content Include="editor\plugins\emoticons\images\96.gif" />
- <Content Include="editor\plugins\emoticons\images\97.gif" />
- <Content Include="editor\plugins\emoticons\images\98.gif" />
- <Content Include="editor\plugins\emoticons\images\99.gif" />
- <Content Include="editor\plugins\emoticons\images\static.gif" />
- <Content Include="editor\plugins\filemanager\filemanager.js" />
- <Content Include="editor\plugins\filemanager\images\file-16.gif" />
- <Content Include="editor\plugins\filemanager\images\file-64.gif" />
- <Content Include="editor\plugins\filemanager\images\folder-16.gif" />
- <Content Include="editor\plugins\filemanager\images\folder-64.gif" />
- <Content Include="editor\plugins\filemanager\images\go-up.gif" />
- <Content Include="editor\plugins\flash\flash.js" />
- <Content Include="editor\plugins\image\image.js" />
- <Content Include="editor\plugins\image\images\align_left.gif" />
- <Content Include="editor\plugins\image\images\align_right.gif" />
- <Content Include="editor\plugins\image\images\align_top.gif" />
- <Content Include="editor\plugins\image\images\refresh.png" />
- <Content Include="editor\plugins\insertfile\insertfile.js" />
- <Content Include="editor\plugins\lineheight\lineheight.js" />
- <Content Include="editor\plugins\link\link.js" />
- <Content Include="editor\plugins\map\map.html" />
- <Content Include="editor\plugins\map\map.js" />
- <Content Include="editor\plugins\media\media.js" />
- <Content Include="editor\plugins\pagebreak\pagebreak.js" />
- <Content Include="editor\plugins\plainpaste\plainpaste.js" />
- <Content Include="editor\plugins\preview\preview.js" />
- <Content Include="editor\plugins\quickformat\quickformat.js" />
- <Content Include="editor\plugins\table\table.js" />
- <Content Include="editor\plugins\template\html\1.html" />
- <Content Include="editor\plugins\template\html\2.html" />
- <Content Include="editor\plugins\template\html\3.html" />
- <Content Include="editor\plugins\template\template.js" />
- <Content Include="editor\plugins\wordpaste\wordpaste.js" />
- <Content Include="editor\themes\common\anchor.gif" />
- <Content Include="editor\themes\common\blank.gif" />
- <Content Include="editor\themes\common\flash.gif" />
- <Content Include="editor\themes\common\loading.gif" />
- <Content Include="editor\themes\common\media.gif" />
- <Content Include="editor\themes\common\rm.gif" />
- <Content Include="editor\themes\default\background.png" />
- <Content Include="editor\themes\default\default.css" />
- <Content Include="editor\themes\default\default.png" />
- <Content Include="editor\themes\simple\simple.css" />
- <Content Include="images\msg_bg.png" />
- <Content Include="images\validate_bg.gif" />
- <Content Include="css\image1.gif" />
- <Content Include="css\image2.gif" />
- <Content Include="css\meneame.jpg" />
- <Content Include="css\pagination.css" />
- <Content Include="scripts\calendar.js" />
- <Content Include="scripts\jquery\jquery.form.js" />
- <Content Include="scripts\jquery\jquery.Jcrop.min.js" />
- <Content Include="scripts\jquery\jquery.jqzoom.js" />
- <Content Include="scripts\jquery\jquery.KinSlideshow-1.2.1.min.js" />
- <Content Include="scripts\jquery\jquery.metadata.js" />
- <Content Include="scripts\jquery\jquery.pagination.js" />
- <Content Include="scripts\jquery\jquery.validate.min.js" />
- <Content Include="scripts\jquery\messages_cn.js" />
- <Content Include="scripts\swfupload\swfupload.handlers.js" />
- <Content Include="scripts\swfupload\swfupload.js" />
- <Content Include="scripts\swfupload\swfupload.queue.js" />
- <Content Include="scripts\swfupload\swfupload.swf" />
- <Content Include="scripts\ui\js\ligerBuild.min.js" />
- <Content Include="scripts\ui\js\ligerBuild.source.js" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-all.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-common.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-dialog.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-form.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-grid.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-layout.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-menu.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-tab.css" />
- <Content Include="scripts\ui\skins\Aqua\css\ligerui-tree.css" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-done.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-error.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-l-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-l.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-question.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-r-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-r.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-warn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-btn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-close-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-close.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-lefttop.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-righttop.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\box-top.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\box\tabs-item-left-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\common\loading.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-bc.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-bl.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-br.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-button.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-button.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-cl.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-close.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-cr.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-done.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-error.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-icons.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-question.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-tc.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-title-icon.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-tl.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-tr.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-warn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-bc.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-cl.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-cr.png" />
- <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-tc.png" />
- <Content Include="scripts\ui\skins\Aqua\images\form\verify-corner.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\box-lefttop.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\box-righttop.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-checkbox-checked.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-checkbox.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-detail-close.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-detail-open.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-line.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-tree-close.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\grid-tree-open.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\header-bg-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\header-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\header2-bg.jpg" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\loading.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\popup-line.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\popup-row-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\grid\popup-row-over.png" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\bar-button-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\checkbox-checked.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\checkbox.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-close-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-close.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-close18X18.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-done.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-down.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-drop.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-edited.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-first.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-last.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-line.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-load.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-load.png" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-milestone.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-next.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-prev.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-remark15X15.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-sort-asc.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-sort-desc.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-up.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\icon-warn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\icon\magnifier.png" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\accordion-content.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\accordion-header-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\accordion-header.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\layout-header-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\layout-header.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\layout-sidebar-header.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\mini-bottom.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\mini-left.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\mini-right.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\mini-top.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\panel-content.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\panel-header-over.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\panel-header.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-left-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-over-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-right-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-tools.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\layout\togglebar.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-arrow.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-down.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-over-l.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-over-m.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-over-r.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-line-x.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\menu\menu-line-y.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\bar-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\header-bg.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\header-bg.jpg" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\header2-bg.jpg" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-btn-l.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-btn-r.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-btn.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-header.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-menu-item-down.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-menu.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-menu.jpg" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-toolbar.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-toolbar.jpg" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-tools-sprites.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\panel\panel-tools.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\folder-open.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\folder.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\loading.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree-leaf.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree-level.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree-noline.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree-status-close.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree-status-open.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree-status.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree.gif" />
- <Content Include="scripts\ui\skins\Aqua\images\tree\tree.png" />
- <Content Include="sysmanage\usermodify.aspx" />
- <Content Include="sysmanage\userResetPasswod.aspx" />
- <Content Include="telmanage\callblacklist.aspx" />
- <Content Include="telmanage\callblacklisteditor.aspx" />
- <Content Include="telmanage\callgraylist.aspx" />
- <Content Include="telmanage\callgraylisteditor.aspx" />
- <Content Include="telmanage\callinNew.aspx" />
- <Content Include="telmanage\callinnewget.aspx" />
- <Content Include="telmanage\callinopt.aspx" />
- <Content Include="telmanage\callinreason.aspx" />
- <Content Include="telmanage\callinreasonedit.aspx" />
- <Content Include="telmanage\callinreasonls.aspx" />
- <Content Include="telmanage\callinreasonzsjm.aspx" />
- <Content Include="telmanage\callleavelist.aspx" />
- <Content Include="telmanage\calloutopt.aspx" />
- <Content Include="telmanage\callrecordlist.aspx" />
- <Content Include="telmanage\callredlist.aspx" />
- <Content Include="telmanage\callredlisteditor.aspx" />
- <Content Include="telmanage\callvoicelist.aspx" />
- <Content Include="telmanage\mobiledatalist.aspx" />
- <Content Include="telmanage\mobiledatalistAddandEdit.aspx" />
- <Content Include="telmanage\ReasonAddandEdit.aspx" />
- <Content Include="telmanage\reasonmanage.aspx" />
- <Content Include="telmanage\recordhighsearch.aspx" />
- <Content Include="telmanage\seatmonitoring.aspx" />
- <Content Include="telmanage\seatmonitoringlist.aspx" />
- <Content Include="telmanage\seatmonitoringlistnew.aspx" />
- <Content Include="telmanage\selectcallcustomer.aspx" />
- <Content Include="telmanage\selectcallrecord.aspx" />
- <Content Include="telmanage\selectcalluser.aspx" />
- <Content Include="telmanage\selectcustomer.aspx" />
- <Content Include="telmanage\selectdept.aspx" />
- <Content Include="telmanage\selectdeptuser.aspx" />
- <Content Include="telmanage\shiftchange.aspx" />
- <Content Include="telmanage\voiceplay.aspx" />
- <Content Include="telmanage\workcalendarset.aspx" />
- <Content Include="telmanage\worktimesset.aspx" />
- <Content Include="telmanage\worktimessetaddandedit.aspx" />
- <Content Include="testform.aspx" />
- <Content Include="ThirdParty\charts.html" />
- <Content Include="ThirdParty\charts1.htm" />
- <Content Include="ThirdParty\DJZZT.htm" />
- <Content Include="ThirdParty\examples\3d-column-interactive\index.htm" />
- <Content Include="ThirdParty\examples\3d-column-null-values\index.htm" />
- <Content Include="ThirdParty\examples\3d-column-stacking-grouping\index.htm" />
- <Content Include="ThirdParty\examples\3d-pie-donut\index.htm" />
- <Content Include="ThirdParty\examples\3d-pie\index.htm" />
- <Content Include="ThirdParty\examples\3d-scatter-draggable\index.htm" />
- <Content Include="ThirdParty\examples\area-basic\index.htm" />
- <Content Include="ThirdParty\examples\area-inverted\index.htm" />
- <Content Include="ThirdParty\examples\area-missing\index.htm" />
- <Content Include="ThirdParty\examples\area-negative\index.htm" />
- <Content Include="ThirdParty\examples\area-stacked-percent\index.htm" />
- <Content Include="ThirdParty\examples\area-stacked\index.htm" />
- <Content Include="ThirdParty\examples\arearange-line\index.htm" />
- <Content Include="ThirdParty\examples\arearange\index.htm" />
- <Content Include="ThirdParty\examples\areaspline\index.htm" />
- <Content Include="ThirdParty\examples\bar-basic\index.htm" />
- <Content Include="ThirdParty\examples\bar-negative-stack\index.htm" />
- <Content Include="ThirdParty\examples\bar-stacked\index.htm" />
- <Content Include="ThirdParty\examples\box-plot\index.htm" />
- <Content Include="ThirdParty\examples\bubble-3d\index.htm" />
- <Content Include="ThirdParty\examples\bubble\index.htm" />
- <Content Include="ThirdParty\examples\column-basic\index.htm" />
- <Content Include="ThirdParty\examples\column-drilldown\index.htm" />
- <Content Include="ThirdParty\examples\column-negative\index.htm" />
- <Content Include="ThirdParty\examples\column-parsed\index.htm" />
- <Content Include="ThirdParty\examples\column-placement\index.htm" />
- <Content Include="ThirdParty\examples\column-rotated-labels\index.htm" />
- <Content Include="ThirdParty\examples\column-stacked-and-grouped\index.htm" />
- <Content Include="ThirdParty\examples\column-stacked-percent\index.htm" />
- <Content Include="ThirdParty\examples\column-stacked\index.htm" />
- <Content Include="ThirdParty\examples\columnrange\index.htm" />
- <Content Include="ThirdParty\examples\combo-dual-axes\index.htm" />
- <Content Include="ThirdParty\examples\combo-meteogram\index.htm" />
- <Content Include="ThirdParty\examples\combo-multi-axes\index.htm" />
- <Content Include="ThirdParty\examples\combo-regression\index.htm" />
- <Content Include="ThirdParty\examples\combo\index.htm" />
- <Content Include="ThirdParty\examples\dynamic-click-to-add\index.htm" />
- <Content Include="ThirdParty\examples\dynamic-master-detail\index.htm" />
- <Content Include="ThirdParty\examples\dynamic-update\index.htm" />
- <Content Include="ThirdParty\examples\error-bar\index.htm" />
- <Content Include="ThirdParty\examples\funnel\index.htm" />
- <Content Include="ThirdParty\examples\gauge-clock\index.htm" />
- <Content Include="ThirdParty\examples\gauge-dual\index.htm" />
- <Content Include="ThirdParty\examples\gauge-solid\index.htm" />
- <Content Include="ThirdParty\examples\gauge-speedometer\index.htm" />
- <Content Include="ThirdParty\examples\gauge-vu-meter\index.htm" />
- <Content Include="ThirdParty\examples\heatmap-canvas\index.htm" />
- <Content Include="ThirdParty\examples\heatmap\index.htm" />
- <Content Include="ThirdParty\examples\line-ajax\index.htm" />
- <Content Include="ThirdParty\examples\line-basic\index.htm" />
- <Content Include="ThirdParty\examples\line-labels\index.htm" />
- <Content Include="ThirdParty\examples\line-log-axis\index.htm" />
- <Content Include="ThirdParty\examples\line-time-series\index.htm" />
- <Content Include="ThirdParty\examples\pie-basic\index.htm" />
- <Content Include="ThirdParty\examples\pie-donut\index.htm" />
- <Content Include="ThirdParty\examples\pie-drilldown\index.htm" />
- <Content Include="ThirdParty\examples\pie-gradient\index.htm" />
- <Content Include="ThirdParty\examples\pie-legend\index.htm" />
- <Content Include="ThirdParty\examples\pie-monochrome\index.htm" />
- <Content Include="ThirdParty\examples\pie-semi-circle\index.htm" />
- <Content Include="ThirdParty\examples\polar-spider\index.htm" />
- <Content Include="ThirdParty\examples\polar-wind-rose\index.htm" />
- <Content Include="ThirdParty\examples\polar\index.htm" />
- <Content Include="ThirdParty\examples\pyramid\index.htm" />
- <Content Include="ThirdParty\examples\renderer\index.htm" />
- <Content Include="ThirdParty\examples\scatter\index.htm" />
- <Content Include="ThirdParty\examples\sparkline\index.htm" />
- <Content Include="ThirdParty\examples\spline-inverted\index.htm" />
- <Content Include="ThirdParty\examples\spline-irregular-time\index.htm" />
- <Content Include="ThirdParty\examples\spline-plot-bands\index.htm" />
- <Content Include="ThirdParty\examples\spline-symbols\index.htm" />
- <Content Include="ThirdParty\examples\waterfall\index.htm" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\pom.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\converter\SVGConverter.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\converter\SVGConverterException.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\AbstractPool.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\BlockingQueuePool.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\ObjectFactory.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\ObjectPool.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\PoolException.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\ServerObjectFactory.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\server\Server.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\server\ServerState.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\server\TimeOut.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\util\MimeType.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\util\TempDir.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\data.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts-3d.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts-convert.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts-more.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\jquery.1.9.1.min.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\map.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\spring-convert.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\pom.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\java\com\highcharts\export\controller\ExportController.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\java\com\highcharts\export\filter\CorsFilter.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\META-INF\context.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\css\demo.css" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\Highcharts-icon-160px.png" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\codemirror.css" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\codemirror.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\javascript\index.html" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\javascript\javascript.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\javascript\typescript.html" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\xml\index.html" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\xml\xml.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\closetag.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\dialog.css" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\dialog.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\foldcode.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\formatting.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\javascript-hint.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\loadmode.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\match-highlighter.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\multiplex.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\overlay.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\pig-hint.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\runmode-standalone.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\runmode.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\search.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\searchcursor.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\simple-hint.css" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\simple-hint.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\xml-hint.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\jquery-1.11.0.min.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\jspf\callback.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\jspf\config.js" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\jspf\lexl.svg" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\spring\export-servlet.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\spring\spring-context.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\web.xml" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\jsp\org\apache\jsp\WEB_002dINF\pages\error_jsp.java" />
- <Content Include="ThirdParty\exporting-server\java\highcharts-export\pom.xml" />
- <Content Include="ThirdParty\exporting-server\phantomjs\data.js" />
- <Content Include="ThirdParty\exporting-server\phantomjs\highcharts-3d.js" />
- <Content Include="ThirdParty\exporting-server\phantomjs\highcharts-convert.js" />
- <Content Include="ThirdParty\exporting-server\phantomjs\highcharts-more.js" />
- <Content Include="ThirdParty\exporting-server\phantomjs\highcharts.js" />
- <Content Include="ThirdParty\exporting-server\phantomjs\jquery.1.9.1.min.js" />
- <Content Include="ThirdParty\exporting-server\phantomjs\map.js" />
- <Content Include="ThirdParty\gfx\vml-radial-gradient.png" />
- <Content Include="ThirdParty\HTMLPage.htm" />
- <Content Include="ThirdParty\index.htm" />
- <Content Include="ThirdParty\js\adapters\standalone-framework.js" />
- <Content Include="ThirdParty\js\adapters\standalone-framework.src.js" />
- <Content Include="ThirdParty\js\highcharts-3d.js" />
- <Content Include="ThirdParty\js\highcharts-3d.src.js" />
- <Content Include="ThirdParty\js\highcharts-all.js" />
- <Content Include="ThirdParty\js\highcharts-more.js" />
- <Content Include="ThirdParty\js\highcharts-more.src.js" />
- <Content Include="ThirdParty\js\highcharts.js" />
- <Content Include="ThirdParty\js\highcharts.src.js" />
- <Content Include="ThirdParty\js\jquery-1.8.3.min.js" />
- <Content Include="ThirdParty\js\modules\canvas-tools.js" />
- <Content Include="ThirdParty\js\modules\canvas-tools.src.js" />
- <Content Include="ThirdParty\js\modules\data.js" />
- <Content Include="ThirdParty\js\modules\data.src.js" />
- <Content Include="ThirdParty\js\modules\drilldown.js" />
- <Content Include="ThirdParty\js\modules\drilldown.src.js" />
- <Content Include="ThirdParty\js\modules\exporting.js" />
- <Content Include="ThirdParty\js\modules\exporting.src.js" />
- <Content Include="ThirdParty\js\modules\funnel.js" />
- <Content Include="ThirdParty\js\modules\funnel.src.js" />
- <Content Include="ThirdParty\js\modules\heatmap.js" />
- <Content Include="ThirdParty\js\modules\heatmap.src.js" />
- <Content Include="ThirdParty\js\modules\no-data-to-display.js" />
- <Content Include="ThirdParty\js\modules\no-data-to-display.src.js" />
- <Content Include="ThirdParty\js\modules\solid-gauge.js" />
- <Content Include="ThirdParty\js\modules\solid-gauge.src.js" />
- <Content Include="ThirdParty\js\themes\dark-blue.js" />
- <Content Include="ThirdParty\js\themes\dark-green.js" />
- <Content Include="ThirdParty\js\themes\dark-unica.js" />
- <Content Include="ThirdParty\js\themes\gray.js" />
- <Content Include="ThirdParty\js\themes\grid-light.js" />
- <Content Include="ThirdParty\js\themes\grid.js" />
- <Content Include="ThirdParty\js\themes\sand-signika.js" />
- <Content Include="ThirdParty\js\themes\skies.js" />
- <Content Include="Web References\WebReferenceFax\FaxService.disco" />
- <Content Include="Web.config">
- <SubType>Designer</SubType>
- </Content>
- <None Include="Web.Debug.config">
- <DependentUpon>Web.config</DependentUpon>
- </None>
- <None Include="Web.Release.config">
- <DependentUpon>Web.config</DependentUpon>
- </None>
- <Content Include="workordermanage\workordernew\selectusers.aspx" />
- <Content Include="workordermanage\workordernew\workorderadd.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderCLDeal.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderInfo.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderMyList.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderPDDeal.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderSearch.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderUGDeal.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderUrgeList.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderWCLList.aspx" />
- <Content Include="workordermanage\workordernew\WorkOrderWPDList.aspx" />
- <Content Include="workordermanage\workorderset\alamangeStateEdit.aspx" />
- <Content Include="workordermanage\workorderset\alarmmanage.aspx" />
- <Content Include="workordermanage\workorderset\alarmmangeTypeEdit.aspx" />
- <Content Include="workordermanage\workorderset\orderstatemanage.aspx" />
- <Content Include="workordermanage\workorderset\ordertypemanage.aspx" />
- <Content Include="workordermanage\workorderset\ordertypemanageedit.aspx" />
- <Content Include="workordermanage\workorderset\workbuttonmanage.aspx" />
- <Content Include="workordermanage\workorderset\workbuttonmanageEdit.aspx" />
- <Content Include="workordermanage\workorderset\workChuLiInfomarger.aspx" />
- <Content Include="workordermanage\workorderset\workflowEdit.aspx" />
- <Content Include="workordermanage\workorderset\workflowmanage.aspx" />
- <Content Include="workordermanage\workorderset\workorderDCLList.aspx" />
- <Content Include="workordermanage\workorderset\workOrderDGDList.aspx" />
- <Content Include="workordermanage\workorderset\workOrderGDZHCXList.aspx" />
- <Content Include="workordermanage\workorderset\WorkOrderInfo.aspx" />
- <Content Include="workordermanage\workorderset\WorkorderStateEdit.aspx" />
- <Content Include="workordermanage\workorderset\workOrderYCLList.aspx" />
- <Content Include="workordermanage\workorderset\workOrderYWJList.aspx" />
- <Content Include="workordermanage\workorder\orderassign.aspx" />
- <Content Include="workordermanage\workorder\orderchuli.aspx" />
- <Content Include="workordermanage\workorder\orderhuifu.aspx" />
- <Content Include="workordermanage\workorder\orderjieshu.aspx" />
- <Content Include="workordermanage\workorder\orderreply.aspx" />
- <Content Include="workordermanage\workorder\selectfinishuser.aspx" />
- <Content Include="workordermanage\workorder\shangchuan.aspx" />
- <Content Include="workordermanage\workorder\shangchuanAdd.aspx" />
- <Content Include="workordermanage\workorder\woekorderDCLedit.aspx" />
- <Content Include="workordermanage\workorder\workorderchuliInfo.aspx" />
- <Content Include="workordermanage\workorder\workorderDCLList.aspx" />
- <Content Include="workordermanage\workorder\workorderdetail.aspx" />
- <Content Include="workordermanage\workorder\workorderDGDList.aspx" />
- <Content Include="workordermanage\workorder\workorderDHFList.aspx" />
- <Content Include="workordermanage\workorder\workorderDJDList.aspx" />
- <Content Include="workordermanage\workorder\workorderDJSList.aspx" />
- <Content Include="workordermanage\workorder\workorderDZPList.aspx" />
- <Content Include="workordermanage\workorder\workorderGCSCountsList.aspx" />
- <Content Include="workordermanage\workorder\workorderGDZHCXList.aspx" />
- <Content Include="workordermanage\workorder\workorderInfo.aspx" />
- <Content Include="workordermanage\workorder\workordernew.aspx" />
- <Content Include="workordermanage\workorder\workorderSearchGaoJi.aspx" />
- <Content Include="workordermanage\workorder\workordershow.aspx" />
- <Content Include="workordermanage\workorder\workordervipshow.aspx" />
- <Content Include="workordermanage\workorder\workorderYCLList.aspx" />
- <Content Include="workordermanage\workorder\workorderYWJList.aspx" />
- <Content Include="workordermanage\workorder\workorderYXGCSCountsList.aspx" />
- <Content Include="workordermanage\_controls\ctl_workorderhistrory.ascx" />
- <Content Include="workordermanage\_controls\ctl_workordernote.ascx" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="askmanage\ajax\pagerinfo.ashx.cs">
- <DependentUpon>pagerinfo.ashx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\ajax\pageritems.ashx.cs">
- <DependentUpon>pageritems.ashx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\ajax\pagerview.aspx.cs">
- <DependentUpon>pagerview.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\ajax\pagerview.aspx.designer.cs">
- <DependentUpon>pagerview.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\ajax\question.ashx.cs">
- <DependentUpon>question.ashx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\ajax\questioncategory.ashx.cs">
- <DependentUpon>questioncategory.ashx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\ajax\questionitems.ashx.cs">
- <DependentUpon>questionitems.ashx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\pageredit.aspx.cs">
- <DependentUpon>pageredit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\pageredit.aspx.designer.cs">
- <DependentUpon>pageredit.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\pagermanage.aspx.cs">
- <DependentUpon>pagermanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\pagermanage.aspx.designer.cs">
- <DependentUpon>pagermanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\pagerview.aspx.cs">
- <DependentUpon>pagerview.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\pagerview.aspx.designer.cs">
- <DependentUpon>pagerview.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\questioncategoryedit.aspx.cs">
- <DependentUpon>questioncategoryedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\questioncategoryedit.aspx.designer.cs">
- <DependentUpon>questioncategoryedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\questionedit.aspx.cs">
- <DependentUpon>questionedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\questionedit.aspx.designer.cs">
- <DependentUpon>questionedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\questionmanage.aspx.cs">
- <DependentUpon>questionmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\questionmanage.aspx.designer.cs">
- <DependentUpon>questionmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="askmanage\_controls\ctl_pagerview.ascx.cs">
- <DependentUpon>ctl_pagerview.ascx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="askmanage\_controls\ctl_pagerview.ascx.designer.cs">
- <DependentUpon>ctl_pagerview.ascx</DependentUpon>
- </Compile>
- <Compile Include="BaseCode\BasePage.cs">
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\ajax\calloutopt.ashx.cs">
- <DependentUpon>calloutopt.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplan.ashx.cs">
- <DependentUpon>callplan.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplanfpset.ashx.cs">
- <DependentUpon>callplanfpset.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplanintophone.ashx.cs">
- <DependentUpon>callplanintophone.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplanresultdata.aspx.cs">
- <DependentUpon>callplanresultdata.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplanresultdata.aspx.designer.cs">
- <DependentUpon>callplanresultdata.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplanresultdatahtml.ashx.cs">
- <DependentUpon>callplanresultdatahtml.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplantelnum.ashx.cs">
- <DependentUpon>callplantelnum.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\ajax\callplanwebset.ashx.cs">
- <DependentUpon>callplanwebset.ashx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\calloutopt.aspx.cs">
- <DependentUpon>calloutopt.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\calloutopt.aspx.designer.cs">
- <DependentUpon>calloutopt.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\calloutoptrecordlist.aspx.cs">
- <DependentUpon>calloutoptrecordlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\calloutoptrecordlist.aspx.designer.cs">
- <DependentUpon>calloutoptrecordlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\calloutoptshow.aspx.cs">
- <DependentUpon>calloutoptshow.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\calloutoptshow.aspx.designer.cs">
- <DependentUpon>calloutoptshow.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplanedit.aspx.cs">
- <DependentUpon>callplanedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplanedit.aspx.designer.cs">
- <DependentUpon>callplanedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplanfpset.aspx.cs">
- <DependentUpon>callplanfpset.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplanfpset.aspx.designer.cs">
- <DependentUpon>callplanfpset.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplanintophone.aspx.cs">
- <DependentUpon>callplanintophone.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplanintophone.aspx.designer.cs">
- <DependentUpon>callplanintophone.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplanmanage.aspx.cs">
- <DependentUpon>callplanmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplanmanage.aspx.designer.cs">
- <DependentUpon>callplanmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplanpageitems.aspx.cs">
- <DependentUpon>callplanpageitems.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplanpageitems.aspx.designer.cs">
- <DependentUpon>callplanpageitems.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplantaskmylist.aspx.cs">
- <DependentUpon>callplantaskmylist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplantaskmylist.aspx.designer.cs">
- <DependentUpon>callplantaskmylist.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresult.aspx.cs">
- <DependentUpon>callplantaskresult.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresult.aspx.designer.cs">
- <DependentUpon>callplantaskresult.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresultdata.aspx.cs">
- <DependentUpon>callplantaskresultdata.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresultdata.aspx.designer.cs">
- <DependentUpon>callplantaskresultdata.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresultdataexcel.aspx.cs">
- <DependentUpon>callplantaskresultdataexcel.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresultdataexcel.aspx.designer.cs">
- <DependentUpon>callplantaskresultdataexcel.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresultsearch.aspx.cs">
- <DependentUpon>callplantaskresultsearch.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplantaskresultsearch.aspx.designer.cs">
- <DependentUpon>callplantaskresultsearch.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\callplanwebset.aspx.cs">
- <DependentUpon>callplanwebset.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\callplanwebset.aspx.designer.cs">
- <DependentUpon>callplanwebset.aspx</DependentUpon>
- </Compile>
- <Compile Include="calloutmanage\_controls\callplanresultdata.ascx.cs">
- <DependentUpon>callplanresultdata.ascx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="calloutmanage\_controls\callplanresultdata.ascx.designer.cs">
- <DependentUpon>callplanresultdata.ascx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\ajax\historyserviceinfo.ashx.cs">
- <DependentUpon>historyserviceinfo.ashx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\customermodify.aspx.cs">
- <DependentUpon>customermodify.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\customermodify.aspx.designer.cs">
- <DependentUpon>customermodify.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\historyserviceinfo.aspx.cs">
- <DependentUpon>historyserviceinfo.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\historyserviceinfo.aspx.designer.cs">
- <DependentUpon>historyserviceinfo.aspx</DependentUpon>
- </Compile>
- <Compile Include="expendmanage\ajax\expandlist.ashx.cs">
- <DependentUpon>expandlist.ashx</DependentUpon>
- </Compile>
- <Compile Include="expendmanage\expandAddandEdit.aspx.cs">
- <DependentUpon>expandAddandEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="expendmanage\expandAddandEdit.aspx.designer.cs">
- <DependentUpon>expandAddandEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="expendmanage\expandlist.aspx.cs">
- <DependentUpon>expandlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="expendmanage\expandlist.aspx.designer.cs">
- <DependentUpon>expandlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\ajax\faxSendAjax.ashx.cs">
- <DependentUpon>faxSendAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\faxcustomer.aspx.cs">
- <DependentUpon>faxcustomer.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\faxcustomer.aspx.designer.cs">
- <DependentUpon>faxcustomer.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\faxdown.aspx.cs">
- <DependentUpon>faxdown.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\faxdown.aspx.designer.cs">
- <DependentUpon>faxdown.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\FaxPublicList.aspx.cs">
- <DependentUpon>FaxPublicList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\FaxPublicList.aspx.designer.cs">
- <DependentUpon>FaxPublicList.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\FaxReceive.aspx.cs">
- <DependentUpon>FaxReceive.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\FaxReceive.aspx.designer.cs">
- <DependentUpon>FaxReceive.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\faxreceiveshow.aspx.cs">
- <DependentUpon>faxreceiveshow.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\faxreceiveshow.aspx.designer.cs">
- <DependentUpon>faxreceiveshow.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\FaxSend.aspx.cs">
- <DependentUpon>FaxSend.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\FaxSend.aspx.designer.cs">
- <DependentUpon>FaxSend.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\FaxSendAlready.aspx.cs">
- <DependentUpon>FaxSendAlready.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\FaxSendAlready.aspx.designer.cs">
- <DependentUpon>FaxSendAlready.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\faxsendshow.aspx.cs">
- <DependentUpon>faxsendshow.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\faxsendshow.aspx.designer.cs">
- <DependentUpon>faxsendshow.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\FaxSendTask.aspx.cs">
- <DependentUpon>FaxSendTask.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\FaxSendTask.aspx.designer.cs">
- <DependentUpon>FaxSendTask.aspx</DependentUpon>
- </Compile>
- <Compile Include="faxmanage\faxtoimage.aspx.cs">
- <DependentUpon>faxtoimage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="faxmanage\faxtoimage.aspx.designer.cs">
- <DependentUpon>faxtoimage.aspx</DependentUpon>
- </Compile>
- <Compile Include="firstlogin.aspx.cs">
- <DependentUpon>firstlogin.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="firstlogin.aspx.designer.cs">
- <DependentUpon>firstlogin.aspx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\ajax\entitylist.ashx.cs">
- <DependentUpon>entitylist.ashx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\ajax\formlist.ashx.cs">
- <DependentUpon>formlist.ashx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\attributeedit.aspx.cs">
- <DependentUpon>attributeedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="formmanage\attributeedit.aspx.designer.cs">
- <DependentUpon>attributeedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\entityedit.aspx.cs">
- <DependentUpon>entityedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="formmanage\entityedit.aspx.designer.cs">
- <DependentUpon>entityedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\entitylist.aspx.cs">
- <DependentUpon>entitylist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="formmanage\entitylist.aspx.designer.cs">
- <DependentUpon>entitylist.aspx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\formlist.aspx.cs">
- <DependentUpon>formlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="formmanage\formlist.aspx.designer.cs">
- <DependentUpon>formlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="formmanage\formset.aspx.cs">
- <DependentUpon>formset.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="formmanage\formset.aspx.designer.cs">
- <DependentUpon>formset.aspx</DependentUpon>
- </Compile>
- <Compile Include="iframeocx.aspx.cs">
- <DependentUpon>iframeocx.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="iframeocx.aspx.designer.cs">
- <DependentUpon>iframeocx.aspx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\ajax\noticeinfoview.ashx.cs">
- <DependentUpon>noticeinfoview.ashx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\ajax\noticemanagelist.ashx.cs">
- <DependentUpon>noticemanagelist.ashx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\noticeinfoedit.aspx.cs">
- <DependentUpon>noticeinfoedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="noticemanage\noticeinfoedit.aspx.designer.cs">
- <DependentUpon>noticeinfoedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\noticeinfoview.aspx.cs">
- <DependentUpon>noticeinfoview.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="noticemanage\noticeinfoview.aspx.designer.cs">
- <DependentUpon>noticeinfoview.aspx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\noticelistview.aspx.cs">
- <DependentUpon>noticelistview.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="noticemanage\noticelistview.aspx.designer.cs">
- <DependentUpon>noticelistview.aspx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\noticemanagelist.aspx.cs">
- <DependentUpon>noticemanagelist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="noticemanage\noticemanagelist.aspx.designer.cs">
- <DependentUpon>noticemanagelist.aspx</DependentUpon>
- </Compile>
- <Compile Include="noticemanage\selectusers.aspx.cs">
- <DependentUpon>selectusers.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="noticemanage\selectusers.aspx.designer.cs">
- <DependentUpon>selectusers.aspx</DependentUpon>
- </Compile>
- <Compile Include="Properties\Settings.Designer.cs">
- <AutoGen>True</AutoGen>
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- <DependentUpon>Settings.settings</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\ajax\indexbase.ashx.cs">
- <DependentUpon>indexbase.ashx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\ajax\indexcategory.ashx.cs">
- <DependentUpon>indexcategory.ashx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\ajax\qcedit.ashx.cs">
- <DependentUpon>qcedit.ashx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\ajax\qcmanage.ashx.cs">
- <DependentUpon>qcmanage.ashx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\ajax\QcResultList.ashx.cs">
- <DependentUpon>QcResultList.ashx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\indexcategoryedit.aspx.cs">
- <DependentUpon>indexcategoryedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\indexcategoryedit.aspx.designer.cs">
- <DependentUpon>indexcategoryedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\indexedit.aspx.cs">
- <DependentUpon>indexedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\indexedit.aspx.designer.cs">
- <DependentUpon>indexedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\indexmanage.aspx.cs">
- <DependentUpon>indexmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\indexmanage.aspx.designer.cs">
- <DependentUpon>indexmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\qcedit.aspx.cs">
- <DependentUpon>qcedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\qcedit.aspx.designer.cs">
- <DependentUpon>qcedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\qcmanage.aspx.cs">
- <DependentUpon>qcmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\qcmanage.aspx.designer.cs">
- <DependentUpon>qcmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\qcresmanage.aspx.cs">
- <DependentUpon>qcresmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\qcresmanage.aspx.designer.cs">
- <DependentUpon>qcresmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\QcResultList.aspx.cs">
- <DependentUpon>QcResultList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\QcResultList.aspx.designer.cs">
- <DependentUpon>QcResultList.aspx</DependentUpon>
- </Compile>
- <Compile Include="qualitymanage\qcshow.aspx.cs">
- <DependentUpon>qcshow.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="qualitymanage\qcshow.aspx.designer.cs">
- <DependentUpon>qcshow.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\ajax\callinreport.aspx.cs">
- <DependentUpon>callinreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\ajax\callinreport.aspx.designer.cs">
- <DependentUpon>callinreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\ajax\newcallinreport.aspx.cs">
- <DependentUpon>newcallinreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\ajax\newcallinreport.aspx.designer.cs">
- <DependentUpon>newcallinreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callratereport.aspx.cs">
- <DependentUpon>callratereport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callratereport.aspx.designer.cs">
- <DependentUpon>callratereport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\callinreasonreport.aspx.cs">
- <DependentUpon>callinreasonreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\callinreasonreport.aspx.designer.cs">
- <DependentUpon>callinreasonreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\callinreport.aspx.cs">
- <DependentUpon>callinreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\callinreport.aspx.designer.cs">
- <DependentUpon>callinreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\checkindetailreport.aspx.cs">
- <DependentUpon>checkindetailreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\checkindetailreport.aspx.designer.cs">
- <DependentUpon>checkindetailreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\checkinreport.aspx.cs">
- <DependentUpon>checkinreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\checkinreport.aspx.designer.cs">
- <DependentUpon>checkinreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\newcallinreport.aspx.cs">
- <DependentUpon>newcallinreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\newcallinreport.aspx.designer.cs">
- <DependentUpon>newcallinreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\teletraffic.aspx.cs">
- <DependentUpon>teletraffic.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\teletraffic.aspx.designer.cs">
- <DependentUpon>teletraffic.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callreports\workorderreport.aspx.cs">
- <DependentUpon>workorderreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callreports\workorderreport.aspx.designer.cs">
- <DependentUpon>workorderreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\ajax\getdictionaryvaluelist.ashx.cs">
- <DependentUpon>getdictionaryvaluelist.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\BasicEngineerWorkOrder.aspx.cs">
- <DependentUpon>BasicEngineerWorkOrder.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\BasicEngineerWorkOrder.aspx.designer.cs">
- <DependentUpon>BasicEngineerWorkOrder.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\CallInDept.aspx.cs">
- <DependentUpon>CallInDept.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\CallInDept.aspx.designer.cs">
- <DependentUpon>CallInDept.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\CallInPerson.aspx.cs">
- <DependentUpon>CallInPerson.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\CallInPerson.aspx.designer.cs">
- <DependentUpon>CallInPerson.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\DepartmentWorkOrder.aspx.cs">
- <DependentUpon>DepartmentWorkOrder.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\DepartmentWorkOrder.aspx.designer.cs">
- <DependentUpon>DepartmentWorkOrder.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\ExecutionEfficiency.aspx.cs">
- <DependentUpon>ExecutionEfficiency.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\ExecutionEfficiency.aspx.designer.cs">
- <DependentUpon>ExecutionEfficiency.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\KnowledgeSediment.aspx.cs">
- <DependentUpon>KnowledgeSediment.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\KnowledgeSediment.aspx.designer.cs">
- <DependentUpon>KnowledgeSediment.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\WorkOrderDistribution.aspx.cs">
- <DependentUpon>WorkOrderDistribution.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\dataanalysis\WorkOrderDistribution.aspx.designer.cs">
- <DependentUpon>WorkOrderDistribution.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\losscalldetailreport.aspx.cs">
- <DependentUpon>losscalldetailreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\losscalldetailreport.aspx.designer.cs">
- <DependentUpon>losscalldetailreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\CallRecInfList.aspx.cs">
- <DependentUpon>CallRecInfList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\CallRecInfList.aspx.designer.cs">
- <DependentUpon>CallRecInfList.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\OneUserAPI.ashx.cs">
- <DependentUpon>OneUserAPI.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\OneUserDepartmentAPI.ashx.cs">
- <DependentUpon>OneUserDepartmentAPI.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\TowUserAPI.ashx.cs">
- <DependentUpon>TowUserAPI.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\TowUserDepartmentAPI.ashx.cs">
- <DependentUpon>TowUserDepartmentAPI.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\TowUserGZL.ashx.cs">
- <DependentUpon>TowUserGZL.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\YearContrast.ashx.cs">
- <DependentUpon>YearContrast.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\ZuoXiTongHua.ashx.cs">
- <DependentUpon>ZuoXiTongHua.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\ZuoXiWorkTotal.ashx.cs">
- <DependentUpon>ZuoXiWorkTotal.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\controls\ZuoXiWorkTotalNew.ashx.cs">
- <DependentUpon>ZuoXiWorkTotalNew.ashx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\OneUserAPI.aspx.cs">
- <DependentUpon>OneUserAPI.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\OneUserAPI.aspx.designer.cs">
- <DependentUpon>OneUserAPI.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\OneUserDepartmentAPI.aspx.cs">
- <DependentUpon>OneUserDepartmentAPI.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\OneUserDepartmentAPI.aspx.designer.cs">
- <DependentUpon>OneUserDepartmentAPI.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\TowUserAPI.aspx.cs">
- <DependentUpon>TowUserAPI.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\TowUserAPI.aspx.designer.cs">
- <DependentUpon>TowUserAPI.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\TowUserDepartmentAPI.aspx.cs">
- <DependentUpon>TowUserDepartmentAPI.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\TowUserDepartmentAPI.aspx.designer.cs">
- <DependentUpon>TowUserDepartmentAPI.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\TowUserGZL.aspx.cs">
- <DependentUpon>TowUserGZL.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\TowUserGZL.aspx.designer.cs">
- <DependentUpon>TowUserGZL.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\YearContrast.aspx.cs">
- <DependentUpon>YearContrast.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\YearContrast.aspx.designer.cs">
- <DependentUpon>YearContrast.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\YearContrastPic.aspx.cs">
- <DependentUpon>YearContrastPic.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\YearContrastPic.aspx.designer.cs">
- <DependentUpon>YearContrastPic.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\ZuoXiManYiDu.aspx.cs">
- <DependentUpon>ZuoXiManYiDu.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\ZuoXiManYiDu.aspx.designer.cs">
- <DependentUpon>ZuoXiManYiDu.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\ZuoXiTongHua.aspx.cs">
- <DependentUpon>ZuoXiTongHua.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\ZuoXiTongHua.aspx.designer.cs">
- <DependentUpon>ZuoXiTongHua.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\operationdata\ZuoXiWorkTotal.aspx.cs">
- <DependentUpon>ZuoXiWorkTotal.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\operationdata\ZuoXiWorkTotal.aspx.designer.cs">
- <DependentUpon>ZuoXiWorkTotal.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\_controls\callinreport.ascx.cs">
- <DependentUpon>callinreport.ascx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\_controls\callinreport.ascx.designer.cs">
- <DependentUpon>callinreport.ascx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\_controls\newcallinreport.ascx.cs">
- <DependentUpon>newcallinreport.ascx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\_controls\newcallinreport.ascx.designer.cs">
- <DependentUpon>newcallinreport.ascx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\smsTypeEdit.aspx.cs">
- <DependentUpon>smsTypeEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="smsmanage\smsTypeEdit.aspx.designer.cs">
- <DependentUpon>smsTypeEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\addcontact.ashx.cs">
- <DependentUpon>addcontact.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\callgray.ashx.cs">
- <DependentUpon>callgray.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\callinNew.ashx.cs">
- <DependentUpon>callinNew.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\callred.ashx.cs">
- <DependentUpon>callred.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\editandsavecustomerinfo.ashx.cs">
- <DependentUpon>editandsavecustomerinfo.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\reasonmanage.ashx.cs">
- <DependentUpon>reasonmanage.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\workcalendarset.ashx.cs">
- <DependentUpon>workcalendarset.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callgraylist.aspx.cs">
- <DependentUpon>callgraylist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callgraylist.aspx.designer.cs">
- <DependentUpon>callgraylist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callgraylisteditor.aspx.cs">
- <DependentUpon>callgraylisteditor.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callgraylisteditor.aspx.designer.cs">
- <DependentUpon>callgraylisteditor.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinNew.aspx.cs">
- <DependentUpon>callinNew.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinNew.aspx.designer.cs">
- <DependentUpon>callinNew.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinnewget.aspx.cs">
- <DependentUpon>callinnewget.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinnewget.aspx.designer.cs">
- <DependentUpon>callinnewget.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinreason.aspx.cs">
- <DependentUpon>callinreason.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinreason.aspx.designer.cs">
- <DependentUpon>callinreason.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinreasonedit.aspx.cs">
- <DependentUpon>callinreasonedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinreasonedit.aspx.designer.cs">
- <DependentUpon>callinreasonedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinreasonls.aspx.cs">
- <DependentUpon>callinreasonls.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinreasonls.aspx.designer.cs">
- <DependentUpon>callinreasonls.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinreasonzsjm.aspx.cs">
- <DependentUpon>callinreasonzsjm.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinreasonzsjm.aspx.designer.cs">
- <DependentUpon>callinreasonzsjm.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callredlist.aspx.cs">
- <DependentUpon>callredlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callredlist.aspx.designer.cs">
- <DependentUpon>callredlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callredlisteditor.aspx.cs">
- <DependentUpon>callredlisteditor.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callredlisteditor.aspx.designer.cs">
- <DependentUpon>callredlisteditor.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ReasonAddandEdit.aspx.cs">
- <DependentUpon>ReasonAddandEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\ReasonAddandEdit.aspx.designer.cs">
- <DependentUpon>ReasonAddandEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\reasonmanage.aspx.cs">
- <DependentUpon>reasonmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\reasonmanage.aspx.designer.cs">
- <DependentUpon>reasonmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\recordhighsearch.aspx.cs">
- <DependentUpon>recordhighsearch.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\recordhighsearch.aspx.designer.cs">
- <DependentUpon>recordhighsearch.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\seatmonitoringlist.aspx.cs">
- <DependentUpon>seatmonitoringlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\seatmonitoringlist.aspx.designer.cs">
- <DependentUpon>seatmonitoringlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\seatmonitoringlistnew.aspx.cs">
- <DependentUpon>seatmonitoringlistnew.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\seatmonitoringlistnew.aspx.designer.cs">
- <DependentUpon>seatmonitoringlistnew.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\workcalendarset.aspx.cs">
- <DependentUpon>workcalendarset.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\workcalendarset.aspx.designer.cs">
- <DependentUpon>workcalendarset.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\worktimesset.aspx.cs">
- <DependentUpon>worktimesset.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\worktimesset.aspx.designer.cs">
- <DependentUpon>worktimesset.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\worktimessetaddandedit.aspx.cs">
- <DependentUpon>worktimessetaddandedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\worktimessetaddandedit.aspx.designer.cs">
- <DependentUpon>worktimessetaddandedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="testform.aspx.cs">
- <DependentUpon>testform.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="testform.aspx.designer.cs">
- <DependentUpon>testform.aspx</DependentUpon>
- </Compile>
- <Compile Include="tools\login.ashx.cs">
- <DependentUpon>login.ashx</DependentUpon>
- </Compile>
- <Compile Include="Web References\WebReferenceFax\Reference.cs" />
- <Compile Include="workordermanage\ajax\ligerComboBox.ashx.cs">
- <DependentUpon>ligerComboBox.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workorderDHFList.ashx.cs">
- <DependentUpon>workorderDHFList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workorderDJDList.ashx.cs">
- <DependentUpon>workorderDJDList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workorderDJSList.ashx.cs">
- <DependentUpon>workorderDJSList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workorderDZPList.ashx.cs">
- <DependentUpon>workorderDZPList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\YXGCSCountsList.ashx.cs">
- <DependentUpon>YXGCSCountsList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\ajax\woOrder.ashx.cs">
- <DependentUpon>woOrder.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\selectusers.aspx.cs">
- <DependentUpon>selectusers.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\selectusers.aspx.designer.cs">
- <DependentUpon>selectusers.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\workorderadd.aspx.cs">
- <DependentUpon>workorderadd.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\workorderadd.aspx.designer.cs">
- <DependentUpon>workorderadd.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderCLDeal.aspx.cs">
- <DependentUpon>WorkOrderCLDeal.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderCLDeal.aspx.designer.cs">
- <DependentUpon>WorkOrderCLDeal.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderInfo.aspx.cs">
- <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderInfo.aspx.designer.cs">
- <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderMyList.aspx.cs">
- <DependentUpon>WorkOrderMyList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderMyList.aspx.designer.cs">
- <DependentUpon>WorkOrderMyList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderPDDeal.aspx.cs">
- <DependentUpon>WorkOrderPDDeal.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderPDDeal.aspx.designer.cs">
- <DependentUpon>WorkOrderPDDeal.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderSearch.aspx.cs">
- <DependentUpon>WorkOrderSearch.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderSearch.aspx.designer.cs">
- <DependentUpon>WorkOrderSearch.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderUGDeal.aspx.cs">
- <DependentUpon>WorkOrderUGDeal.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderUGDeal.aspx.designer.cs">
- <DependentUpon>WorkOrderUGDeal.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderUrgeList.aspx.cs">
- <DependentUpon>WorkOrderUrgeList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderUrgeList.aspx.designer.cs">
- <DependentUpon>WorkOrderUrgeList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderWCLList.aspx.cs">
- <DependentUpon>WorkOrderWCLList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderWCLList.aspx.designer.cs">
- <DependentUpon>WorkOrderWCLList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderWPDList.aspx.cs">
- <DependentUpon>WorkOrderWPDList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workordernew\WorkOrderWPDList.aspx.designer.cs">
- <DependentUpon>WorkOrderWPDList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\shangchuan.aspx.cs">
- <DependentUpon>shangchuan.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\shangchuan.aspx.designer.cs">
- <DependentUpon>shangchuan.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\shangchuanAdd.aspx.cs">
- <DependentUpon>shangchuanAdd.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\shangchuanAdd.aspx.designer.cs">
- <DependentUpon>shangchuanAdd.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDHFList.aspx.cs">
- <DependentUpon>workorderDHFList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDHFList.aspx.designer.cs">
- <DependentUpon>workorderDHFList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDJDList.aspx.cs">
- <DependentUpon>workorderDJDList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDJDList.aspx.designer.cs">
- <DependentUpon>workorderDJDList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDJSList.aspx.cs">
- <DependentUpon>workorderDJSList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDJSList.aspx.designer.cs">
- <DependentUpon>workorderDJSList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDZPList.aspx.cs">
- <DependentUpon>workorderDZPList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDZPList.aspx.designer.cs">
- <DependentUpon>workorderDZPList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderGCSCountsList.aspx.cs">
- <DependentUpon>workorderGCSCountsList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderGCSCountsList.aspx.designer.cs">
- <DependentUpon>workorderGCSCountsList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderSearchGaoJi.aspx.cs">
- <DependentUpon>workorderSearchGaoJi.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderSearchGaoJi.aspx.designer.cs">
- <DependentUpon>workorderSearchGaoJi.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workordervipshow.aspx.cs">
- <DependentUpon>workordervipshow.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workordervipshow.aspx.designer.cs">
- <DependentUpon>workordervipshow.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderYXGCSCountsList.aspx.cs">
- <DependentUpon>workorderYXGCSCountsList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderYXGCSCountsList.aspx.designer.cs">
- <DependentUpon>workorderYXGCSCountsList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\_controls\ctl_workorderhistrory.ascx.cs">
- <DependentUpon>ctl_workorderhistrory.ascx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\_controls\ctl_workorderhistrory.ascx.designer.cs">
- <DependentUpon>ctl_workorderhistrory.ascx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\_controls\ctl_workordernote.ascx.cs">
- <DependentUpon>ctl_workordernote.ascx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\_controls\ctl_workordernote.ascx.designer.cs">
- <DependentUpon>ctl_workordernote.ascx</DependentUpon>
- </Compile>
- <Compile Include="center.aspx.cs">
- <DependentUpon>center.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="center.aspx.designer.cs">
- <DependentUpon>center.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\ajax\customer.ashx.cs">
- <DependentUpon>customer.ashx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\ajax\customeredit.ashx.cs">
- <DependentUpon>customeredit.ashx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\ajax\person.ashx.cs">
- <DependentUpon>person.ashx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\ajax\personedit.ashx.cs">
- <DependentUpon>personedit.ashx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\ajax\regionlist.ashx.cs">
- <DependentUpon>regionlist.ashx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\categorylist.aspx.cs">
- <DependentUpon>categorylist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\categorylist.aspx.designer.cs">
- <DependentUpon>categorylist.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\customeredit.aspx.cs">
- <DependentUpon>customeredit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\customeredit.aspx.designer.cs">
- <DependentUpon>customeredit.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\customerimport.aspx.cs">
- <DependentUpon>customerimport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\customerimport.aspx.designer.cs">
- <DependentUpon>customerimport.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\customerlist.aspx.cs">
- <DependentUpon>customerlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\customerlist.aspx.designer.cs">
- <DependentUpon>customerlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\customerpersonlist.aspx.cs">
- <DependentUpon>customerpersonlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\customerpersonlist.aspx.designer.cs">
- <DependentUpon>customerpersonlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\customerSYNC.aspx.cs">
- <DependentUpon>customerSYNC.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\customerSYNC.aspx.designer.cs">
- <DependentUpon>customerSYNC.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\personedit.aspx.cs">
- <DependentUpon>personedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\personedit.aspx.designer.cs">
- <DependentUpon>personedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\personlist.aspx.cs">
- <DependentUpon>personlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\personlist.aspx.designer.cs">
- <DependentUpon>personlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\personmodify.aspx.cs">
- <DependentUpon>personmodify.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\personmodify.aspx.designer.cs">
- <DependentUpon>personmodify.aspx</DependentUpon>
- </Compile>
- <Compile Include="customermanage\regionlist.aspx.cs">
- <DependentUpon>regionlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="customermanage\regionlist.aspx.designer.cs">
- <DependentUpon>regionlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="default.aspx.cs">
- <DependentUpon>default.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="default.aspx.designer.cs">
- <DependentUpon>default.aspx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\ajax\knowledge.ashx.cs">
- <DependentUpon>knowledge.ashx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\knowledgeclass.aspx.cs">
- <DependentUpon>knowledgeclass.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="knowledgemanage\knowledgeclass.aspx.designer.cs">
- <DependentUpon>knowledgeclass.aspx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\knowledgeclassAddandEdit.aspx.cs">
- <DependentUpon>knowledgeclassAddandEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="knowledgemanage\knowledgeclassAddandEdit.aspx.designer.cs">
- <DependentUpon>knowledgeclassAddandEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\knowledgelist.aspx.cs">
- <DependentUpon>knowledgelist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="knowledgemanage\knowledgelist.aspx.designer.cs">
- <DependentUpon>knowledgelist.aspx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\knowledgelistAddandEdit.aspx.cs">
- <DependentUpon>knowledgelistAddandEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="knowledgemanage\knowledgelistAddandEdit.aspx.designer.cs">
- <DependentUpon>knowledgelistAddandEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\knowledgesearch.aspx.cs">
- <DependentUpon>knowledgesearch.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="knowledgemanage\knowledgesearch.aspx.designer.cs">
- <DependentUpon>knowledgesearch.aspx</DependentUpon>
- </Compile>
- <Compile Include="knowledgemanage\knowledgeview.aspx.cs">
- <DependentUpon>knowledgeview.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="knowledgemanage\knowledgeview.aspx.designer.cs">
- <DependentUpon>knowledgeview.aspx</DependentUpon>
- </Compile>
- <Compile Include="login.aspx.cs">
- <DependentUpon>login.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="login.aspx.designer.cs">
- <DependentUpon>login.aspx</DependentUpon>
- </Compile>
- <Compile Include="outsysurl.aspx.cs">
- <DependentUpon>outsysurl.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="outsysurl.aspx.designer.cs">
- <DependentUpon>outsysurl.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\acceptancereport.aspx.cs">
- <DependentUpon>acceptancereport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\acceptancereport.aspx.designer.cs">
- <DependentUpon>acceptancereport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\callerdealreport.aspx.cs">
- <DependentUpon>callerdealreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\callerdealreport.aspx.designer.cs">
- <DependentUpon>callerdealreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\longwaitreport.aspx.cs">
- <DependentUpon>longwaitreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\longwaitreport.aspx.designer.cs">
- <DependentUpon>longwaitreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\switchedlosscallreport.aspx.cs">
- <DependentUpon>switchedlosscallreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\switchedlosscallreport.aspx.designer.cs">
- <DependentUpon>switchedlosscallreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\talktimereport.aspx.cs">
- <DependentUpon>talktimereport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\talktimereport.aspx.designer.cs">
- <DependentUpon>talktimereport.aspx</DependentUpon>
- </Compile>
- <Compile Include="reportmanage\totalcallreport.aspx.cs">
- <DependentUpon>totalcallreport.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="reportmanage\totalcallreport.aspx.designer.cs">
- <DependentUpon>totalcallreport.aspx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\ajax\smsSentAjax.ashx.cs">
- <DependentUpon>smsSentAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\ajax\SmsSentAlWeiAjax.ashx.cs">
- <DependentUpon>SmsSentAlWeiAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\ajax\smsTypeListAjax.ashx.cs">
- <DependentUpon>smsTypeListAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\smsSent.aspx.cs">
- <DependentUpon>smsSent.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="smsmanage\smsSent.aspx.designer.cs">
- <DependentUpon>smsSent.aspx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\SmsSentAlready.aspx.cs">
- <DependentUpon>SmsSentAlready.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="smsmanage\SmsSentAlready.aspx.designer.cs">
- <DependentUpon>SmsSentAlready.aspx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\SmsSentWeiFaSong.aspx.cs">
- <DependentUpon>SmsSentWeiFaSong.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="smsmanage\SmsSentWeiFaSong.aspx.designer.cs">
- <DependentUpon>SmsSentWeiFaSong.aspx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\smsTypeList.aspx.cs">
- <DependentUpon>smsTypeList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="smsmanage\smsTypeList.aspx.designer.cs">
- <DependentUpon>smsTypeList.aspx</DependentUpon>
- </Compile>
- <Compile Include="smsmanage\UserEdit.aspx.cs">
- <DependentUpon>UserEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="smsmanage\UserEdit.aspx.designer.cs">
- <DependentUpon>UserEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\basedatalistAction.ashx.cs">
- <DependentUpon>basedatalistAction.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\calllogs.ashx.cs">
- <DependentUpon>calllogs.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\deptcategory.ashx.cs">
- <DependentUpon>deptcategory.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\deptListAction.ashx.cs">
- <DependentUpon>deptListAction.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\dictionarymanage.ashx.cs">
- <DependentUpon>dictionarymanage.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\functionmanage.ashx.cs">
- <DependentUpon>functionmanage.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\ligerComboBox.ashx.cs">
- <DependentUpon>ligerComboBox.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\loginlogs.ashx.cs">
- <DependentUpon>loginlogs.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\optlogs.ashx.cs">
- <DependentUpon>optlogs.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\rolelist.ashx.cs">
- <DependentUpon>rolelist.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\sysconfigmanage.ashx.cs">
- <DependentUpon>sysconfigmanage.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\systemConfigAction.ashx.cs">
- <DependentUpon>systemConfigAction.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ajax\UserAjaxList.ashx.cs">
- <DependentUpon>UserAjaxList.ashx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\basedataedit.aspx.cs">
- <DependentUpon>basedataedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\basedataedit.aspx.designer.cs">
- <DependentUpon>basedataedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\basedatalist.aspx.cs">
- <DependentUpon>basedatalist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\basedatalist.aspx.designer.cs">
- <DependentUpon>basedatalist.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\calllogs.aspx.cs">
- <DependentUpon>calllogs.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\calllogs.aspx.designer.cs">
- <DependentUpon>calllogs.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\configedit.aspx.cs">
- <DependentUpon>configedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\configedit.aspx.designer.cs">
- <DependentUpon>configedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\configlist.aspx.cs">
- <DependentUpon>configlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\configlist.aspx.designer.cs">
- <DependentUpon>configlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\deptdeit.aspx.cs">
- <DependentUpon>deptdeit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\deptdeit.aspx.designer.cs">
- <DependentUpon>deptdeit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\deptlist.aspx.cs">
- <DependentUpon>deptlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\deptlist.aspx.designer.cs">
- <DependentUpon>deptlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\DeptlistAddandEdit.aspx.cs">
- <DependentUpon>DeptlistAddandEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\DeptlistAddandEdit.aspx.designer.cs">
- <DependentUpon>DeptlistAddandEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\dictionarylistedit.aspx.cs">
- <DependentUpon>dictionarylistedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\dictionarylistedit.aspx.designer.cs">
- <DependentUpon>dictionarylistedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\dictionarymanage.aspx.cs">
- <DependentUpon>dictionarymanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\dictionarymanage.aspx.designer.cs">
- <DependentUpon>dictionarymanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\dictionarytreeedit.aspx.cs">
- <DependentUpon>dictionarytreeedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\dictionarytreeedit.aspx.designer.cs">
- <DependentUpon>dictionarytreeedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\functionanniuedit.aspx.cs">
- <DependentUpon>functionanniuedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\functionanniuedit.aspx.designer.cs">
- <DependentUpon>functionanniuedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\functionmanage.aspx.cs">
- <DependentUpon>functionmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\functionmanage.aspx.designer.cs">
- <DependentUpon>functionmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\functiontreeedit.aspx.cs">
- <DependentUpon>functiontreeedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\functiontreeedit.aspx.designer.cs">
- <DependentUpon>functiontreeedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\loginlogs.aspx.cs">
- <DependentUpon>loginlogs.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\loginlogs.aspx.designer.cs">
- <DependentUpon>loginlogs.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\optlogs.aspx.cs">
- <DependentUpon>optlogs.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\optlogs.aspx.designer.cs">
- <DependentUpon>optlogs.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\ResetPassword.aspx.cs">
- <DependentUpon>ResetPassword.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\ResetPassword.aspx.designer.cs">
- <DependentUpon>ResetPassword.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\rolelist.aspx.cs">
- <DependentUpon>rolelist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\rolelist.aspx.designer.cs">
- <DependentUpon>rolelist.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\rolelistedit.aspx.cs">
- <DependentUpon>rolelistedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\rolelistedit.aspx.designer.cs">
- <DependentUpon>rolelistedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\sysconfigedit.aspx.cs">
- <DependentUpon>sysconfigedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\sysconfigedit.aspx.designer.cs">
- <DependentUpon>sysconfigedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\sysconfigmanage.aspx.cs">
- <DependentUpon>sysconfigmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\sysconfigmanage.aspx.designer.cs">
- <DependentUpon>sysconfigmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\userAllocationRole.aspx.cs">
- <DependentUpon>userAllocationRole.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\userAllocationRole.aspx.designer.cs">
- <DependentUpon>userAllocationRole.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\useredit.aspx.cs">
- <DependentUpon>useredit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\useredit.aspx.designer.cs">
- <DependentUpon>useredit.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\userlist.aspx.cs">
- <DependentUpon>userlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\userlist.aspx.designer.cs">
- <DependentUpon>userlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="pagenull.aspx.cs">
- <DependentUpon>pagenull.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="pagenull.aspx.designer.cs">
- <DependentUpon>pagenull.aspx</DependentUpon>
- </Compile>
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="sysmanage\usermodify.aspx.cs">
- <DependentUpon>usermodify.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\usermodify.aspx.designer.cs">
- <DependentUpon>usermodify.aspx</DependentUpon>
- </Compile>
- <Compile Include="sysmanage\userResetPasswod.aspx.cs">
- <DependentUpon>userResetPasswod.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="sysmanage\userResetPasswod.aspx.designer.cs">
- <DependentUpon>userResetPasswod.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\callblack.ashx.cs">
- <DependentUpon>callblack.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\callleavelist.ashx.cs">
- <DependentUpon>callleavelist.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\customeropt.ashx.cs">
- <DependentUpon>customeropt.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\mobiledatalist.ashx.cs">
- <DependentUpon>mobiledatalist.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\seatmonitoring.ashx.cs">
- <DependentUpon>seatmonitoring.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\selectuser.ashx.cs">
- <DependentUpon>selectuser.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\ajax\telrecords.ashx.cs">
- <DependentUpon>telrecords.ashx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callblacklist.aspx.cs">
- <DependentUpon>callblacklist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callblacklist.aspx.designer.cs">
- <DependentUpon>callblacklist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callblacklisteditor.aspx.cs">
- <DependentUpon>callblacklisteditor.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callblacklisteditor.aspx.designer.cs">
- <DependentUpon>callblacklisteditor.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callinopt.aspx.cs">
- <DependentUpon>callinopt.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callinopt.aspx.designer.cs">
- <DependentUpon>callinopt.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callleavelist.aspx.cs">
- <DependentUpon>callleavelist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callleavelist.aspx.designer.cs">
- <DependentUpon>callleavelist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\calloutopt.aspx.cs">
- <DependentUpon>calloutopt.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\calloutopt.aspx.designer.cs">
- <DependentUpon>calloutopt.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callrecordlist.aspx.cs">
- <DependentUpon>callrecordlist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callrecordlist.aspx.designer.cs">
- <DependentUpon>callrecordlist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\callvoicelist.aspx.cs">
- <DependentUpon>callvoicelist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\callvoicelist.aspx.designer.cs">
- <DependentUpon>callvoicelist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\mobiledatalist.aspx.cs">
- <DependentUpon>mobiledatalist.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\mobiledatalist.aspx.designer.cs">
- <DependentUpon>mobiledatalist.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\mobiledatalistAddandEdit.aspx.cs">
- <DependentUpon>mobiledatalistAddandEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\mobiledatalistAddandEdit.aspx.designer.cs">
- <DependentUpon>mobiledatalistAddandEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\seatmonitoring.aspx.cs">
- <DependentUpon>seatmonitoring.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\seatmonitoring.aspx.designer.cs">
- <DependentUpon>seatmonitoring.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\selectcallcustomer.aspx.cs">
- <DependentUpon>selectcallcustomer.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\selectcallcustomer.aspx.designer.cs">
- <DependentUpon>selectcallcustomer.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\selectcallrecord.aspx.cs">
- <DependentUpon>selectcallrecord.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\selectcallrecord.aspx.designer.cs">
- <DependentUpon>selectcallrecord.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\selectcalluser.aspx.cs">
- <DependentUpon>selectcalluser.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\selectcalluser.aspx.designer.cs">
- <DependentUpon>selectcalluser.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\selectcustomer.aspx.cs">
- <DependentUpon>selectcustomer.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\selectcustomer.aspx.designer.cs">
- <DependentUpon>selectcustomer.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\selectdept.aspx.cs">
- <DependentUpon>selectdept.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\selectdept.aspx.designer.cs">
- <DependentUpon>selectdept.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\selectdeptuser.aspx.cs">
- <DependentUpon>selectdeptuser.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\selectdeptuser.aspx.designer.cs">
- <DependentUpon>selectdeptuser.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\shiftchange.aspx.cs">
- <DependentUpon>shiftchange.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\shiftchange.aspx.designer.cs">
- <DependentUpon>shiftchange.aspx</DependentUpon>
- </Compile>
- <Compile Include="telmanage\voiceplay.aspx.cs">
- <DependentUpon>voiceplay.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="telmanage\voiceplay.aspx.designer.cs">
- <DependentUpon>voiceplay.aspx</DependentUpon>
- </Compile>
- <Compile Include="tools\basedata.ashx.cs">
- <DependentUpon>basedata.ashx</DependentUpon>
- </Compile>
- <Compile Include="tools\BasePage.cs">
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="tools\verify_code.ashx.cs">
- <DependentUpon>verify_code.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\CommonDataList.ashx.cs">
- <DependentUpon>CommonDataList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\WorkalarmmangeAjax.ashx.cs">
- <DependentUpon>WorkalarmmangeAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\Workbuttonmanageajax.ashx.cs">
- <DependentUpon>Workbuttonmanageajax.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workflowmanageajax.ashx.cs">
- <DependentUpon>workflowmanageajax.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workorderDCLList.ashx.cs">
- <DependentUpon>workorderDCLList.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\WorkOrderStateAjax.ashx.cs">
- <DependentUpon>WorkOrderStateAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\workorderstatelist.ashx.cs">
- <DependentUpon>workorderstatelist.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\ajax\WorkTypeManageAjax.ashx.cs">
- <DependentUpon>WorkTypeManageAjax.ashx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\alamangeStateEdit.aspx.cs">
- <DependentUpon>alamangeStateEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\alamangeStateEdit.aspx.designer.cs">
- <DependentUpon>alamangeStateEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\alarmmanage.aspx.cs">
- <DependentUpon>alarmmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\alarmmanage.aspx.designer.cs">
- <DependentUpon>alarmmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\alarmmangeTypeEdit.aspx.cs">
- <DependentUpon>alarmmangeTypeEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\alarmmangeTypeEdit.aspx.designer.cs">
- <DependentUpon>alarmmangeTypeEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\orderstatemanage.aspx.cs">
- <DependentUpon>orderstatemanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\orderstatemanage.aspx.designer.cs">
- <DependentUpon>orderstatemanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\ordertypemanage.aspx.cs">
- <DependentUpon>ordertypemanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\ordertypemanage.aspx.designer.cs">
- <DependentUpon>ordertypemanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\ordertypemanageedit.aspx.cs">
- <DependentUpon>ordertypemanageedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\ordertypemanageedit.aspx.designer.cs">
- <DependentUpon>ordertypemanageedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workbuttonmanage.aspx.cs">
- <DependentUpon>workbuttonmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workbuttonmanage.aspx.designer.cs">
- <DependentUpon>workbuttonmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workbuttonmanageEdit.aspx.cs">
- <DependentUpon>workbuttonmanageEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workbuttonmanageEdit.aspx.designer.cs">
- <DependentUpon>workbuttonmanageEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workChuLiInfomarger.aspx.cs">
- <DependentUpon>workChuLiInfomarger.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workChuLiInfomarger.aspx.designer.cs">
- <DependentUpon>workChuLiInfomarger.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workflowEdit.aspx.cs">
- <DependentUpon>workflowEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workflowEdit.aspx.designer.cs">
- <DependentUpon>workflowEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workflowmanage.aspx.cs">
- <DependentUpon>workflowmanage.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workflowmanage.aspx.designer.cs">
- <DependentUpon>workflowmanage.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workorderDCLList.aspx.cs">
- <DependentUpon>workorderDCLList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workorderDCLList.aspx.designer.cs">
- <DependentUpon>workorderDCLList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderDGDList.aspx.cs">
- <DependentUpon>workOrderDGDList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderDGDList.aspx.designer.cs">
- <DependentUpon>workOrderDGDList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderGDZHCXList.aspx.cs">
- <DependentUpon>workOrderGDZHCXList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderGDZHCXList.aspx.designer.cs">
- <DependentUpon>workOrderGDZHCXList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\WorkOrderInfo.aspx.cs">
- <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\WorkOrderInfo.aspx.designer.cs">
- <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\WorkorderStateEdit.aspx.cs">
- <DependentUpon>WorkorderStateEdit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\WorkorderStateEdit.aspx.designer.cs">
- <DependentUpon>WorkorderStateEdit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderYCLList.aspx.cs">
- <DependentUpon>workOrderYCLList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderYCLList.aspx.designer.cs">
- <DependentUpon>workOrderYCLList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderYWJList.aspx.cs">
- <DependentUpon>workOrderYWJList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorderset\workOrderYWJList.aspx.designer.cs">
- <DependentUpon>workOrderYWJList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\AssembleWorkFlowTask.cs" />
- <Compile Include="workordermanage\workorder\orderassign.aspx.cs">
- <DependentUpon>orderassign.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\orderassign.aspx.designer.cs">
- <DependentUpon>orderassign.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\orderchuli.aspx.cs">
- <DependentUpon>orderchuli.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\orderchuli.aspx.designer.cs">
- <DependentUpon>orderchuli.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\orderhuifu.aspx.cs">
- <DependentUpon>orderhuifu.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\orderhuifu.aspx.designer.cs">
- <DependentUpon>orderhuifu.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\orderjieshu.aspx.cs">
- <DependentUpon>orderjieshu.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\orderjieshu.aspx.designer.cs">
- <DependentUpon>orderjieshu.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\orderreply.aspx.cs">
- <DependentUpon>orderreply.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\orderreply.aspx.designer.cs">
- <DependentUpon>orderreply.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\ParseWorkFlowTask.cs" />
- <Compile Include="workordermanage\workorder\selectfinishuser.aspx.cs">
- <DependentUpon>selectfinishuser.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\selectfinishuser.aspx.designer.cs">
- <DependentUpon>selectfinishuser.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\woekorderDCLedit.aspx.cs">
- <DependentUpon>woekorderDCLedit.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\woekorderDCLedit.aspx.designer.cs">
- <DependentUpon>woekorderDCLedit.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderchuliInfo.aspx.cs">
- <DependentUpon>workorderchuliInfo.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderchuliInfo.aspx.designer.cs">
- <DependentUpon>workorderchuliInfo.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDCLList.aspx.cs">
- <DependentUpon>workorderDCLList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDCLList.aspx.designer.cs">
- <DependentUpon>workorderDCLList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderdetail.aspx.cs">
- <DependentUpon>workorderdetail.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderdetail.aspx.designer.cs">
- <DependentUpon>workorderdetail.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDGDList.aspx.cs">
- <DependentUpon>workorderDGDList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderDGDList.aspx.designer.cs">
- <DependentUpon>workorderDGDList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderGDZHCXList.aspx.cs">
- <DependentUpon>workorderGDZHCXList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderGDZHCXList.aspx.designer.cs">
- <DependentUpon>workorderGDZHCXList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderInfo.aspx.cs">
- <DependentUpon>workorderInfo.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderInfo.aspx.designer.cs">
- <DependentUpon>workorderInfo.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workordernew.aspx.cs">
- <DependentUpon>workordernew.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workordernew.aspx.designer.cs">
- <DependentUpon>workordernew.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workordershow.aspx.cs">
- <DependentUpon>workordershow.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workordershow.aspx.designer.cs">
- <DependentUpon>workordershow.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderYCLList.aspx.cs">
- <DependentUpon>workorderYCLList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderYCLList.aspx.designer.cs">
- <DependentUpon>workorderYCLList.aspx</DependentUpon>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderYWJList.aspx.cs">
- <DependentUpon>workorderYWJList.aspx</DependentUpon>
- <SubType>ASPXCodeBehind</SubType>
- </Compile>
- <Compile Include="workordermanage\workorder\workorderYWJList.aspx.designer.cs">
- <DependentUpon>workorderYWJList.aspx</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\BaseCallCenter.BLL\HySoft.BaseCallCenter.BLL.csproj">
- <Project>{686AB9E3-CAF6-4740-962D-6E7AFFC7BA22}</Project>
- <Name>HySoft.BaseCallCenter.BLL</Name>
- </ProjectReference>
- <ProjectReference Include="..\BaseCallCenter.Common\HySoft.Common.csproj">
- <Project>{56213535-7FD9-4ACD-A497-705670CE61DC}</Project>
- <Name>HySoft.Common</Name>
- </ProjectReference>
- <ProjectReference Include="..\BaseCallCenter.DBUtility\HySoft.DBUtility.csproj">
- <Project>{E2C9435B-CB68-465A-BDF9-333F2D75E81B}</Project>
- <Name>HySoft.DBUtility</Name>
- </ProjectReference>
- <ProjectReference Include="..\BaseCallCenter.Model\HySoft.BaseCallCenter.Model.csproj">
- <Project>{EA3A3BD8-2B5F-4077-9D8A-DFF27CDD4C12}</Project>
- <Name>HySoft.BaseCallCenter.Model</Name>
- </ProjectReference>
- <ProjectReference Include="..\BaseCallCenter.UUAPI\HySoft.BaseCallCenter.UUAPI.csproj">
- <Project>{4a89b866-0566-4dd3-b0eb-66635a98b35a}</Project>
- <Name>HySoft.BaseCallCenter.UUAPI</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="customermanage\ajax\regionlist.ashx" />
- <Content Include="knowledgemanage\ajax\knowledge.ashx" />
- <Content Include="customermanage\ajax\customer.ashx" />
- <Content Include="customermanage\ajax\customeredit.ashx" />
- <Content Include="customermanage\ajax\person.ashx" />
- <Content Include="customermanage\ajax\personedit.ashx" />
- <Content Include="customermanage\ajax\historyserviceinfo.ashx" />
- <Content Include="reportmanage\dataanalysis\ajax\getdictionaryvaluelist.ashx" />
- <Content Include="reportmanage\operationdata\controls\OneUserAPI.ashx" />
- <Content Include="reportmanage\operationdata\controls\OneUserDepartmentAPI.ashx" />
- <Content Include="reportmanage\operationdata\controls\TowUserAPI.ashx" />
- <Content Include="reportmanage\operationdata\controls\TowUserDepartmentAPI.ashx" />
- <Content Include="reportmanage\operationdata\controls\TowUserGZL.ashx" />
- <Content Include="reportmanage\operationdata\controls\ZuoXiTongHua.ashx" />
- <Content Include="faxmanage\ajax\faxSendAjax.ashx" />
- <Content Include="expendmanage\ajax\expandlist.ashx" />
- <Content Include="formmanage\ajax\entitylist.ashx" />
- <Content Include="formmanage\ajax\formlist.ashx" />
- <Content Include="askmanage\ajax\pagerinfo.ashx" />
- <Content Include="askmanage\ajax\pageritems.ashx" />
- <Content Include="askmanage\ajax\question.ashx" />
- <Content Include="askmanage\ajax\questioncategory.ashx" />
- <Content Include="askmanage\ajax\questionitems.ashx" />
- <Content Include="calloutmanage\ajax\calloutopt.ashx" />
- <Content Include="calloutmanage\ajax\callplan.ashx" />
- <Content Include="calloutmanage\ajax\callplanfpset.ashx" />
- <Content Include="calloutmanage\ajax\callplanintophone.ashx" />
- <Content Include="calloutmanage\ajax\callplantelnum.ashx" />
- <Content Include="calloutmanage\ajax\callplanwebset.ashx" />
- <Content Include="calloutmanage\ajax\callplanresultdatahtml.ashx" />
- <Content Include="noticemanage\ajax\noticemanagelist.ashx" />
- <Content Include="noticemanage\ajax\noticeinfoview.ashx" />
- <None Include="Properties\PublishProfiles\dd.pubxml" />
- <None Include="Properties\PublishProfiles\配置文件1.pubxml" />
- <None Include="Properties\Settings.settings">
- <Generator>SettingsSingleFileGenerator</Generator>
- <LastGenOutput>Settings.Designer.cs</LastGenOutput>
- </None>
- <Content Include="qualitymanage\ajax\indexbase.ashx" />
- <Content Include="qualitymanage\ajax\indexcategory.ashx" />
- <Content Include="qualitymanage\ajax\qcedit.ashx" />
- <Content Include="qualitymanage\ajax\qcmanage.ashx" />
- <Content Include="qualitymanage\ajax\QcResultList.ashx" />
- <Content Include="reportmanage\operationdata\controls\YearContrast.ashx" />
- <Content Include="reportmanage\operationdata\controls\ZuoXiWorkTotal.ashx" />
- <Content Include="reportmanage\operationdata\controls\ZuoXiWorkTotalNew.ashx" />
- <None Include="scripts\ui\skins\Aqua\images\dialog\ie6\Thumbs.db" />
- <None Include="scripts\ui\skins\Aqua\images\dialog\Thumbs.db" />
- <None Include="scripts\ui\skins\Aqua\images\layout\tab.psd" />
- <None Include="scripts\ui\skins\Aqua\images\layout\tabs-tools.psd" />
- <None Include="scripts\ui\skins\Aqua\images\tree\tree.psd" />
- <Content Include="tools\verify_code.ashx" />
- <Content Include="tools\basedata.ashx" />
- <Content Include="sysmanage\ajax\optlogs.ashx" />
- <Content Include="sysmanage\ajax\calllogs.ashx" />
- <Content Include="sysmanage\ajax\loginlogs.ashx" />
- <Content Include="sysmanage\ajax\sysconfigmanage.ashx" />
- <Content Include="sysmanage\ajax\dictionarymanage.ashx" />
- <Content Include="sysmanage\ajax\functionmanage.ashx" />
- <Content Include="telmanage\ajax\seatmonitoring.ashx" />
- <Content Include="telmanage\ajax\mobiledatalist.ashx" />
- <Content Include="smsmanage\ajax\smsSentAjax.ashx" />
- <Content Include="smsmanage\ajax\SmsSentAlWeiAjax.ashx" />
- <Content Include="smsmanage\ajax\smsTypeListAjax.ashx" />
- <Content Include="telmanage\ajax\callblack.ashx" />
- <Content Include="telmanage\ajax\callleavelist.ashx" />
- <Content Include="telmanage\ajax\telrecords.ashx" />
- <Content Include="workordermanage\ajax\WorkalarmmangeAjax.ashx" />
- <Content Include="workordermanage\ajax\Workbuttonmanageajax.ashx" />
- <Content Include="workordermanage\ajax\WorkOrderStateAjax.ashx" />
- <Content Include="workordermanage\ajax\WorkTypeManageAjax.ashx" />
- <Content Include="sysmanage\ajax\ligerComboBox.ashx" />
- <Content Include="sysmanage\ajax\rolelist.ashx" />
- <Content Include="sysmanage\ajax\basedatalistAction.ashx" />
- <Content Include="sysmanage\ajax\deptListAction.ashx" />
- <Content Include="sysmanage\ajax\systemConfigAction.ashx" />
- <Content Include="sysmanage\ajax\UserAjaxList.ashx" />
- <Content Include="sysmanage\ajax\deptcategory.ashx" />
- <Content Include="telmanage\ajax\customeropt.ashx" />
- <Content Include="telmanage\ajax\selectuser.ashx" />
- <Content Include="telmanage\ajax\addcontact.ashx" />
- <Content Include="telmanage\ajax\workcalendarset.ashx" />
- <Content Include="telmanage\ajax\editandsavecustomerinfo.ashx" />
- <Content Include="telmanage\ajax\callgray.ashx" />
- <Content Include="telmanage\ajax\reasonmanage.ashx" />
- <Content Include="telmanage\ajax\callinNew.ashx" />
- <Content Include="telmanage\ajax\callred.ashx" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\app-convert.properties" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\log4j.properties" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\resources\log4j.properties" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\pages\demo.jsp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\pages\error.jsp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\spring\app-convert.properties" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\classes\com\highcharts\export\controller\ExportController.class" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\classes\com\highcharts\export\filter\CorsFilter.class" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\classes\log4j.properties" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007880.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007883.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007886.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007889.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000014.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000017.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000020.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000023.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000026.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000029.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000965.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000974.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000977.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000980.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000983.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000986.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000989.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000992.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000995.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000998.tmp" />
- <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00001001.tmp" />
- <None Include="ThirdParty\exporting-server\java\readme.md" />
- <None Include="ThirdParty\exporting-server\phantomjs\readme.md" />
- <None Include="ThirdParty\exporting-server\php\php-batik\index.php" />
- <Content Include="workordermanage\ajax\workflowmanageajax.ashx" />
- <None Include="tools\hykj.hy" />
- <Content Include="workordermanage\ajax\CommonDataList.ashx" />
- <Content Include="workordermanage\ajax\workorderDCLList.ashx" />
- <Content Include="workordermanage\ajax\workorderstatelist.ashx" />
- <Content Include="workordermanage\ajax\ligerComboBox.ashx" />
- <Content Include="tools\login.ashx" />
- <None Include="Web References\WebReferenceFax\FaxService.wsdl" />
- <None Include="Web References\WebReferenceFax\Reference.map" />
- <Content Include="workordermanage\ajax\workorderDHFList.ashx" />
- <Content Include="workordermanage\ajax\workorderDJDList.ashx" />
- <Content Include="workordermanage\ajax\workorderDJSList.ashx" />
- <Content Include="workordermanage\ajax\workorderDZPList.ashx" />
- <Content Include="workordermanage\ajax\YXGCSCountsList.ashx" />
- <Content Include="workordermanage\workordernew\ajax\woOrder.ashx" />
- <None Include="zxkhd.rar" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="App_Code\" />
- <Folder Include="reportmanage\kpiassess\" />
- <Folder Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\generated-sources\annotations\" />
- <Folder Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\tmp\" />
- </ItemGroup>
- <PropertyGroup>
- <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
- <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
- </PropertyGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
- <ProjectExtensions>
- <VisualStudio>
- <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
- <WebProjectProperties>
- <UseIIS>True</UseIIS>
- <AutoAssignPort>True</AutoAssignPort>
- <DevelopmentServerPort>49765</DevelopmentServerPort>
- <DevelopmentServerVPath>/</DevelopmentServerVPath>
- <IISUrl>http://localhost:49769/</IISUrl>
- <NTLMAuthentication>False</NTLMAuthentication>
- <UseCustomServer>False</UseCustomServer>
- <CustomServerUrl>
- </CustomServerUrl>
- <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
- </WebProjectProperties>
- </FlavorProperties>
- </VisualStudio>
- </ProjectExtensions>
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|