UU跑腿标准版

HySoft.BaseCallCenter.Web.csproj 205KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProductVersion>
  8. </ProductVersion>
  9. <SchemaVersion>2.0</SchemaVersion>
  10. <ProjectGuid>{C1532D58-F3E4-486D-A798-BDEC101188A9}</ProjectGuid>
  11. <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  12. <OutputType>Library</OutputType>
  13. <AppDesignerFolder>Properties</AppDesignerFolder>
  14. <RootNamespace>HySoft.BaseCallCenter.Web</RootNamespace>
  15. <AssemblyName>HySoft.BaseCallCenter.Web</AssemblyName>
  16. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  17. <TargetFrameworkProfile />
  18. <SccProjectName>
  19. </SccProjectName>
  20. <SccLocalPath>
  21. </SccLocalPath>
  22. <SccAuxPath>
  23. </SccAuxPath>
  24. <SccProvider>
  25. </SccProvider>
  26. <UseIISExpress>true</UseIISExpress>
  27. <FileUpgradeFlags>
  28. </FileUpgradeFlags>
  29. <UpgradeBackupLocation>
  30. </UpgradeBackupLocation>
  31. <OldToolsVersion>4.0</OldToolsVersion>
  32. <IISExpressSSLPort />
  33. <IISExpressAnonymousAuthentication />
  34. <IISExpressWindowsAuthentication />
  35. <IISExpressUseClassicPipelineMode>true</IISExpressUseClassicPipelineMode>
  36. <UseGlobalApplicationHostFile />
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  39. <DebugSymbols>true</DebugSymbols>
  40. <DebugType>full</DebugType>
  41. <Optimize>false</Optimize>
  42. <OutputPath>bin\</OutputPath>
  43. <DefineConstants>DEBUG;TRACE</DefineConstants>
  44. <ErrorReport>prompt</ErrorReport>
  45. <WarningLevel>4</WarningLevel>
  46. </PropertyGroup>
  47. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  48. <DebugType>pdbonly</DebugType>
  49. <Optimize>true</Optimize>
  50. <OutputPath>bin\</OutputPath>
  51. <DefineConstants>TRACE</DefineConstants>
  52. <ErrorReport>prompt</ErrorReport>
  53. <WarningLevel>4</WarningLevel>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Reference Include="AjaxPro.2">
  57. <HintPath>..\..\dll\AjaxPro.2.dll</HintPath>
  58. </Reference>
  59. <Reference Include="AspNetPager, Version=7.4.3.0, Culture=neutral, PublicKeyToken=fb0a0fe055d40fd4, processorArchitecture=MSIL">
  60. <SpecificVersion>False</SpecificVersion>
  61. <HintPath>dll\AspNetPager.dll</HintPath>
  62. </Reference>
  63. <Reference Include="AspNetPager.resources">
  64. <HintPath>dll\AspNetPager.resources.dll</HintPath>
  65. </Reference>
  66. <Reference Include="LitJSON, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  67. <SpecificVersion>False</SpecificVersion>
  68. <HintPath>dll\LitJSON.dll</HintPath>
  69. </Reference>
  70. <Reference Include="System" />
  71. <Reference Include="System.Data" />
  72. <Reference Include="System.Data.DataSetExtensions" />
  73. <Reference Include="System.Drawing" />
  74. <Reference Include="System.Runtime.Serialization" />
  75. <Reference Include="System.Transactions" />
  76. <Reference Include="System.Web" />
  77. <Reference Include="System.Web.ApplicationServices" />
  78. <Reference Include="System.Web.DynamicData" />
  79. <Reference Include="System.Web.Entity" />
  80. <Reference Include="System.Web.Extensions" />
  81. <Reference Include="System.Xml" />
  82. <Reference Include="System.Configuration" />
  83. <Reference Include="System.Web.Services" />
  84. <Reference Include="System.EnterpriseServices" />
  85. <Reference Include="System.Web.Mobile" />
  86. <Reference Include="System.Xml.Linq" />
  87. <Reference Include="WFEngine, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  88. <SpecificVersion>False</SpecificVersion>
  89. <HintPath>..\..\WFDLL\WFEngine.dll</HintPath>
  90. </Reference>
  91. <Reference Include="WOSBusineSupporter, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  92. <SpecificVersion>False</SpecificVersion>
  93. <HintPath>..\..\WFDLL\WOSBusineSupporter.dll</HintPath>
  94. </Reference>
  95. </ItemGroup>
  96. <ItemGroup>
  97. <Content Include="askmanage\ajax\pagerview.aspx" />
  98. <Content Include="askmanage\pageredit.aspx" />
  99. <Content Include="askmanage\pagermanage.aspx" />
  100. <Content Include="askmanage\pagerview.aspx" />
  101. <Content Include="askmanage\questioncategoryedit.aspx" />
  102. <Content Include="askmanage\questionedit.aspx" />
  103. <Content Include="askmanage\questionmanage.aspx" />
  104. <Content Include="askmanage\_controls\ctl_pagerview.ascx" />
  105. <Content Include="bin\AjaxPro.2.dll" />
  106. <Content Include="bin\AspNetPager.dll" />
  107. <Content Include="bin\AspNetPager.resources.dll" />
  108. <Content Include="bin\HySoft.BaseCallCenter.BLL.dll" />
  109. <Content Include="bin\HySoft.BaseCallCenter.BLL.pdb" />
  110. <Content Include="bin\HySoft.BaseCallCenter.DAL.dll" />
  111. <Content Include="bin\HySoft.BaseCallCenter.DAL.pdb" />
  112. <Content Include="bin\HySoft.BaseCallCenter.Model.dll" />
  113. <Content Include="bin\HySoft.BaseCallCenter.Model.pdb" />
  114. <Content Include="bin\HySoft.BaseCallCenter.Web.dll" />
  115. <Content Include="bin\HySoft.BaseCallCenter.Web.pdb" />
  116. <Content Include="bin\HySoft.Common.dll" />
  117. <Content Include="bin\HySoft.Common.pdb" />
  118. <Content Include="bin\HySoft.DBUtility.dll" />
  119. <Content Include="bin\HySoft.DBUtility.pdb" />
  120. <Content Include="bin\LitJSON.dll" />
  121. <Content Include="bin\WFEngine.dll" />
  122. <Content Include="bin\WOSBusineSupporter.dll" />
  123. <Content Include="calloutmanage\ajax\callplanresultdata.aspx" />
  124. <Content Include="calloutmanage\calloutopt.aspx" />
  125. <Content Include="calloutmanage\calloutoptrecordlist.aspx" />
  126. <Content Include="calloutmanage\calloutoptshow.aspx" />
  127. <Content Include="calloutmanage\callplanedit.aspx" />
  128. <Content Include="calloutmanage\callplanfpset.aspx" />
  129. <Content Include="calloutmanage\callplanintophone.aspx" />
  130. <Content Include="calloutmanage\callplanmanage.aspx" />
  131. <Content Include="calloutmanage\callplanpageitems.aspx" />
  132. <Content Include="calloutmanage\callplantaskmylist.aspx" />
  133. <Content Include="calloutmanage\callplantaskresult.aspx" />
  134. <Content Include="calloutmanage\callplantaskresultdata.aspx" />
  135. <Content Include="calloutmanage\callplantaskresultdataexcel.aspx" />
  136. <Content Include="calloutmanage\callplantaskresultsearch.aspx" />
  137. <Content Include="calloutmanage\callplanwebset.aspx" />
  138. <Content Include="calloutmanage\_controls\callplanresultdata.ascx" />
  139. <Content Include="center.aspx" />
  140. <Content Include="charts\chartLine.swf" />
  141. <Content Include="charts\Column2D.swf" />
  142. <Content Include="charts\FCF_Bar2D.swf" />
  143. <Content Include="charts\FCF_Column2D.swf" />
  144. <Content Include="charts\FCF_Column3D.swf" />
  145. <Content Include="charts\FCF_Column3Ds.swf" />
  146. <Content Include="charts\FCF_Line.swf" />
  147. <Content Include="charts\FCF_MSColumn2D.swf" />
  148. <Content Include="charts\FCF_MSColumn3D.swf" />
  149. <Content Include="charts\FCF_MSLine.swf" />
  150. <Content Include="charts\FCF_Pie2D.swf" />
  151. <Content Include="charts\FCF_Pie3D.swf" />
  152. <Content Include="charts\pie3d.swf" />
  153. <Content Include="config\uupaotui.xml">
  154. <SubType>Designer</SubType>
  155. </Content>
  156. <Content Include="css\animate.css" />
  157. <Content Include="css\easyui.css" />
  158. <Content Include="css\import_basic.css" />
  159. <Content Include="css\style.css" />
  160. <Content Include="css\tc.css" />
  161. <Content Include="customermanage\categorylist.aspx" />
  162. <Content Include="customermanage\customeredit.aspx" />
  163. <Content Include="customermanage\customerimport.aspx" />
  164. <Content Include="customermanage\customerlist.aspx" />
  165. <Content Include="customermanage\customermodify.aspx" />
  166. <Content Include="customermanage\customerpersonlist.aspx" />
  167. <Content Include="customermanage\customerSYNC.aspx" />
  168. <Content Include="customermanage\historyserviceinfo.aspx" />
  169. <Content Include="customermanage\personedit.aspx" />
  170. <Content Include="customermanage\personlist.aspx" />
  171. <Content Include="customermanage\personmodify.aspx" />
  172. <Content Include="customermanage\regionlist.aspx" />
  173. <Content Include="default.aspx" />
  174. <Content Include="expendmanage\expandAddandEdit.aspx" />
  175. <Content Include="expendmanage\expandlist.aspx" />
  176. <Content Include="faxmanage\css\global.css" />
  177. <Content Include="faxmanage\faxcustomer.aspx" />
  178. <Content Include="faxmanage\faxdown.aspx" />
  179. <Content Include="faxmanage\FaxPublicList.aspx" />
  180. <Content Include="faxmanage\FaxReceive.aspx" />
  181. <Content Include="faxmanage\faxreceiveshow.aspx" />
  182. <Content Include="faxmanage\FaxSend.aspx" />
  183. <Content Include="faxmanage\FaxSendAlready.aspx" />
  184. <Content Include="faxmanage\faxsendshow.aspx" />
  185. <Content Include="faxmanage\FaxSendTask.aspx" />
  186. <Content Include="faxmanage\faxtoimage.aspx" />
  187. <Content Include="faxmanage\images\add.png" />
  188. <Content Include="faxmanage\images\botom.png" />
  189. <Content Include="faxmanage\images\jian.png" />
  190. <Content Include="faxmanage\images\left.png" />
  191. <Content Include="faxmanage\images\pre.png" />
  192. <Content Include="faxmanage\images\right.png" />
  193. <Content Include="faxmanage\images\rotation.png" />
  194. <Content Include="faxmanage\images\top.png" />
  195. <Content Include="firstlogin.aspx" />
  196. <Content Include="formmanage\attributeedit.aspx" />
  197. <Content Include="formmanage\entityedit.aspx" />
  198. <Content Include="formmanage\entitylist.aspx" />
  199. <Content Include="formmanage\formlist.aspx" />
  200. <Content Include="formmanage\formset.aspx" />
  201. <Content Include="iframeocx.aspx" />
  202. <Content Include="images\add.png" />
  203. <Content Include="images\agent0.png" />
  204. <Content Include="images\agent1.png" />
  205. <Content Include="images\Arrow_left_16.png" />
  206. <Content Include="images\Arrow_right_16.png" />
  207. <Content Include="images\btn_dis_lookup.gif" />
  208. <Content Include="images\btn_off_lookup.gif" />
  209. <Content Include="images\btn_on_lookup.gif" />
  210. <Content Include="images\check_box_24.png" />
  211. <Content Include="images\check_list_16.png" />
  212. <Content Include="images\close.gif" />
  213. <Content Include="images\default_09_02.png" />
  214. <Content Include="images\dialog_question_24.png" />
  215. <Content Include="images\dot0913.png.gif" />
  216. <Content Include="images\full_screen_24.png" />
  217. <Content Include="images\full_screen_exit_24.png" />
  218. <Content Include="images\guanbi001.png" />
  219. <Content Include="images\guanbi002.png" />
  220. <Content Include="images\guanbi003.png" />
  221. <Content Include="images\guanbi004.png" />
  222. <Content Include="images\guanbi005.png" />
  223. <Content Include="images\guanbi006.png" />
  224. <Content Include="images\head_bg_20170612.gif" />
  225. <Content Include="images\head_uu.png" />
  226. <Content Include="images\help_question_mark_24.png" />
  227. <Content Include="images\ico_16_2.gif" />
  228. <Content Include="images\kkback.gif" />
  229. <Content Include="images\kk_01.gif" />
  230. <Content Include="images\logo_image.gif" />
  231. <Content Include="images\logo_uu.png" />
  232. <Content Include="images\notice.png" />
  233. <Content Include="images\page_FL1.gif" />
  234. <Content Include="images\page_L1.gif" />
  235. <Content Include="images\page_LL1.gif" />
  236. <Content Include="images\page_R1.gif" />
  237. <Content Include="images\phone.png" />
  238. <Content Include="images\phone1.png" />
  239. <Content Include="images\phone3.png" />
  240. <Content Include="images\radio_button_off_16.png" />
  241. <Content Include="images\radio_button_on_16.png" />
  242. <Content Include="images\reportimg\01.png" />
  243. <Content Include="images\reportimg\02.png" />
  244. <Content Include="images\reportimg\03.png" />
  245. <Content Include="images\reportimg\04.png" />
  246. <Content Include="images\reportimg\05.png" />
  247. <Content Include="images\reportimg\06.png" />
  248. <Content Include="images\reportimg\07.png" />
  249. <Content Include="images\reportimg\08.png" />
  250. <Content Include="images\reportimg\09.png" />
  251. <Content Include="images\seatimgs\dj1.png" />
  252. <Content Include="images\seatimgs\dj2.png" />
  253. <Content Include="images\seatimgs\jt1.png" />
  254. <Content Include="images\seatimgs\jt2.png" />
  255. <Content Include="images\seatimgs\kongxian.jpg" />
  256. <Content Include="images\seatimgs\lj1.png" />
  257. <Content Include="images\seatimgs\lj2.png" />
  258. <Content Include="images\seatimgs\mang.jpg" />
  259. <Content Include="images\seatimgs\Mtzm1.png" />
  260. <Content Include="images\seatimgs\Mtzm2.png" />
  261. <Content Include="images\seatimgs\Mtzx1.png" />
  262. <Content Include="images\seatimgs\Mtzx2.png" />
  263. <Content Include="images\seatimgs\qc1.png" />
  264. <Content Include="images\seatimgs\qc2.png" />
  265. <Content Include="images\seatimgs\qz1.png" />
  266. <Content Include="images\seatimgs\qz2.png" />
  267. <Content Include="images\seatimgs\qzlx1.png" />
  268. <Content Include="images\seatimgs\qzlx2.png" />
  269. <Content Include="images\seatimgs\tonghua.jpg" />
  270. <Content Include="images\seatimgs\weiqianru.jpg" />
  271. <Content Include="images\seatimgs\wh1.png" />
  272. <Content Include="images\seatimgs\wh2.png" />
  273. <Content Include="images\seatimgs\zhenglin.jpg" />
  274. <Content Include="images\seatimgs\zm1.png" />
  275. <Content Include="images\seatimgs\zm2.png" />
  276. <Content Include="images\seatimgs\zx1.png" />
  277. <Content Include="images\seatimgs\zx2.png" />
  278. <Content Include="images\server0.png" />
  279. <Content Include="images\server1.png" />
  280. <Content Include="images\sign_check_24.png" />
  281. <Content Include="images\start72.png" />
  282. <Content Include="images\stop72.png" />
  283. <Content Include="images\tabs_bg1.jpg" />
  284. <Content Include="images\tabs_bg2.jpg" />
  285. <Content Include="images\telephone.png" />
  286. <Content Include="images\telphoto_07.gif" />
  287. <Content Include="images\tel_menu1.png" />
  288. <Content Include="images\tel_menu2.png" />
  289. <Content Include="images\totle\bc1.png" />
  290. <Content Include="images\totle\bc2.png" />
  291. <Content Include="images\totle\bc3.png" />
  292. <Content Include="images\totle\cs1.png" />
  293. <Content Include="images\totle\cs2.png" />
  294. <Content Include="images\totle\cs3.png" />
  295. <Content Include="images\totle\dfth1.png" />
  296. <Content Include="images\totle\dfth2.png" />
  297. <Content Include="images\totle\dfth3.png" />
  298. <Content Include="images\totle\gd1.png" />
  299. <Content Include="images\totle\gd2.png" />
  300. <Content Include="images\totle\gd3.png" />
  301. <Content Include="images\totle\jh1.png" />
  302. <Content Include="images\totle\jh2.png" />
  303. <Content Include="images\totle\jh3.png" />
  304. <Content Include="images\totle\jsgd.png" />
  305. <Content Include="images\totle\ldyy1.png" />
  306. <Content Include="images\totle\ldyy3.png" />
  307. <Content Include="images\totle\order1.png" />
  308. <Content Include="images\totle\order3.png" />
  309. <Content Include="images\totle\qc1.png" />
  310. <Content Include="images\totle\qc2.png" />
  311. <Content Include="images\totle\qc3.png" />
  312. <Content Include="images\totle\qr1.png" />
  313. <Content Include="images\totle\qr2.png" />
  314. <Content Include="images\totle\qr3.png" />
  315. <Content Include="images\totle\sgzd.png" />
  316. <Content Include="images\totle\thjl1.png" />
  317. <Content Include="images\totle\thjl3.png" />
  318. <Content Include="images\totle\wh1.png" />
  319. <Content Include="images\totle\wh2.png" />
  320. <Content Include="images\totle\wh3.png" />
  321. <Content Include="images\totle\zm1.png" />
  322. <Content Include="images\totle\zm2.png" />
  323. <Content Include="images\totle\zm3.png" />
  324. <Content Include="images\totle\zsk.png" />
  325. <Content Include="images\totle\zsk1.png" />
  326. <Content Include="images\totle\zx1.png" />
  327. <Content Include="images\totle\zx2.png" />
  328. <Content Include="images\totle\zx3.png" />
  329. <Content Include="images\totle\zy1.png" />
  330. <Content Include="images\totle\zy2.png" />
  331. <Content Include="images\totle\zy3.png" />
  332. <Content Include="images\uu_head.png" />
  333. <Content Include="images\wjdc.jpg" />
  334. <Content Include="images\Zoom_In_32.png" />
  335. <Content Include="images\Zoom_Out_32.png" />
  336. <Content Include="images\zx1.png" />
  337. <Content Include="images\zx2.png" />
  338. <Content Include="images\zx3.png" />
  339. <Content Include="images\zx4.png" />
  340. <Content Include="knowledgemanage\knowledgeclass.aspx" />
  341. <Content Include="knowledgemanage\knowledgeclassAddandEdit.aspx" />
  342. <Content Include="knowledgemanage\knowledgelist.aspx" />
  343. <Content Include="knowledgemanage\knowledgelistAddandEdit.aspx" />
  344. <Content Include="knowledgemanage\knowledgesearch.aspx" />
  345. <Content Include="knowledgemanage\knowledgeview.aspx" />
  346. <Content Include="login.aspx" />
  347. <Content Include="noticemanage\noticeinfoedit.aspx" />
  348. <Content Include="noticemanage\noticeinfoview.aspx" />
  349. <Content Include="noticemanage\noticelistview.aspx" />
  350. <Content Include="noticemanage\noticemanagelist.aspx" />
  351. <Content Include="noticemanage\selectusers.aspx" />
  352. <Content Include="outsysurl.aspx" />
  353. <Content Include="qualitymanage\indexcategoryedit.aspx" />
  354. <Content Include="qualitymanage\indexedit.aspx" />
  355. <Content Include="qualitymanage\indexmanage.aspx" />
  356. <Content Include="qualitymanage\qcedit.aspx" />
  357. <Content Include="qualitymanage\qcmanage.aspx" />
  358. <Content Include="qualitymanage\qcresmanage.aspx" />
  359. <Content Include="qualitymanage\QcResultList.aspx" />
  360. <Content Include="qualitymanage\qcshow.aspx" />
  361. <Content Include="reportmanage\acceptancereport.aspx" />
  362. <Content Include="reportmanage\ajax\callinreport.aspx" />
  363. <Content Include="reportmanage\ajax\newcallinreport.aspx" />
  364. <Content Include="reportmanage\callerdealreport.aspx" />
  365. <Content Include="reportmanage\callratereport.aspx" />
  366. <Content Include="reportmanage\callreports\callinreasonreport.aspx" />
  367. <Content Include="reportmanage\callreports\callinreport.aspx" />
  368. <Content Include="reportmanage\callreports\checkindetailreport.aspx" />
  369. <Content Include="reportmanage\callreports\checkinreport.aspx" />
  370. <Content Include="reportmanage\callreports\newcallinreport.aspx" />
  371. <Content Include="reportmanage\callreports\teletraffic.aspx" />
  372. <Content Include="reportmanage\callreports\workorderreport.aspx" />
  373. <Content Include="reportmanage\dataanalysis\BasicEngineerWorkOrder.aspx" />
  374. <Content Include="reportmanage\dataanalysis\CallInDept.aspx" />
  375. <Content Include="reportmanage\dataanalysis\CallInPerson.aspx" />
  376. <Content Include="reportmanage\dataanalysis\DepartmentWorkOrder.aspx" />
  377. <Content Include="reportmanage\dataanalysis\ExecutionEfficiency.aspx" />
  378. <Content Include="reportmanage\dataanalysis\KnowledgeSediment.aspx" />
  379. <Content Include="reportmanage\dataanalysis\WorkOrderDistribution.aspx" />
  380. <Content Include="reportmanage\longwaitreport.aspx" />
  381. <Content Include="reportmanage\losscalldetailreport.aspx" />
  382. <Content Include="reportmanage\operationdata\CallRecInfList.aspx" />
  383. <Content Include="reportmanage\operationdata\OneUserAPI.aspx" />
  384. <Content Include="reportmanage\operationdata\OneUserDepartmentAPI.aspx" />
  385. <Content Include="reportmanage\operationdata\TowUserAPI.aspx" />
  386. <Content Include="reportmanage\operationdata\TowUserDepartmentAPI.aspx" />
  387. <Content Include="reportmanage\operationdata\TowUserGZL.aspx" />
  388. <Content Include="reportmanage\operationdata\YearContrast.aspx" />
  389. <Content Include="reportmanage\operationdata\YearContrastPic.aspx" />
  390. <Content Include="reportmanage\operationdata\ZuoXiManYiDu.aspx" />
  391. <Content Include="reportmanage\operationdata\ZuoXiTongHua.aspx" />
  392. <Content Include="reportmanage\operationdata\ZuoXiWorkTotal.aspx" />
  393. <Content Include="reportmanage\switchedlosscallreport.aspx" />
  394. <Content Include="reportmanage\talktimereport.aspx" />
  395. <Content Include="reportmanage\totalcallreport.aspx" />
  396. <Content Include="reportmanage\_controls\callinreport.ascx" />
  397. <Content Include="reportmanage\_controls\newcallinreport.ascx" />
  398. <Content Include="scripts\CustomersData.js" />
  399. <Content Include="scripts\jquery\cancel.png" />
  400. <Content Include="scripts\jquery\jquery.easyui.min.js" />
  401. <Content Include="scripts\jquery\jquery.min.js" />
  402. <Content Include="scripts\jquery\jquery.uploadify.min.js" />
  403. <Content Include="scripts\jquery\swfobject.js" />
  404. <Content Include="scripts\jquery\uploadify.css" />
  405. <Content Include="scripts\jquery\uploadify.swf" />
  406. <Content Include="scripts\ui\json2.js" />
  407. <Content Include="scripts\ui\js\base.js" />
  408. <Content Include="scripts\ui\js\core\base.js" />
  409. <Content Include="scripts\ui\js\core\inject.js" />
  410. <Content Include="scripts\ui\js\ligerDrag.js" />
  411. <Content Include="scripts\ui\js\ligerui.all.js" />
  412. <Content Include="scripts\ui\js\ligerui.min.js" />
  413. <Content Include="scripts\ui\js\plugins\ligerAccordion.js" />
  414. <Content Include="scripts\ui\js\plugins\ligerButton.js" />
  415. <Content Include="scripts\ui\js\plugins\ligerCheckBox.js" />
  416. <Content Include="scripts\ui\js\plugins\ligerCheckBoxList.js" />
  417. <Content Include="scripts\ui\js\plugins\ligerComboBox.js" />
  418. <Content Include="scripts\ui\js\plugins\ligerDateEditor.js" />
  419. <Content Include="scripts\ui\js\plugins\ligerDialog.js" />
  420. <Content Include="scripts\ui\js\plugins\ligerDrag.js" />
  421. <Content Include="scripts\ui\js\plugins\ligerEasyTab.js" />
  422. <Content Include="scripts\ui\js\plugins\ligerFilter.js" />
  423. <Content Include="scripts\ui\js\plugins\ligerForm.js" />
  424. <Content Include="scripts\ui\js\plugins\ligerGrid.js" />
  425. <Content Include="scripts\ui\js\plugins\ligerLayout.js" />
  426. <Content Include="scripts\ui\js\plugins\ligerListBox.js" />
  427. <Content Include="scripts\ui\js\plugins\ligerMenu.js" />
  428. <Content Include="scripts\ui\js\plugins\ligerMenuBar.js" />
  429. <Content Include="scripts\ui\js\plugins\ligerMessageBox.js" />
  430. <Content Include="scripts\ui\js\plugins\ligerPanel.js" />
  431. <Content Include="scripts\ui\js\plugins\ligerPopupEdit.js" />
  432. <Content Include="scripts\ui\js\plugins\ligerPortal.js" />
  433. <Content Include="scripts\ui\js\plugins\ligerRadio.js" />
  434. <Content Include="scripts\ui\js\plugins\ligerRadioList.js" />
  435. <Content Include="scripts\ui\js\plugins\ligerResizable.js" />
  436. <Content Include="scripts\ui\js\plugins\ligerSpinner.js" />
  437. <Content Include="scripts\ui\js\plugins\ligerTab.js" />
  438. <Content Include="scripts\ui\js\plugins\ligerTextBox.js" />
  439. <Content Include="scripts\ui\js\plugins\ligerTip.js" />
  440. <Content Include="scripts\ui\js\plugins\ligerToolBar.js" />
  441. <Content Include="scripts\ui\js\plugins\ligerTree.js" />
  442. <Content Include="scripts\ui\js\plugins\ligerWindow.js" />
  443. <Content Include="scripts\ui\skins\Aqua\images\common\bigloading.gif" />
  444. <Content Include="scripts\ui\skins\Aqua\images\common\button-disabled.gif" />
  445. <Content Include="scripts\ui\skins\Aqua\images\common\button-over.gif" />
  446. <Content Include="scripts\ui\skins\Aqua\images\common\button.gif" />
  447. <Content Include="scripts\ui\skins\Aqua\images\common\drop-icons.gif" />
  448. <Content Include="scripts\ui\skins\Aqua\images\common\exclamation.gif" />
  449. <Content Include="scripts\ui\skins\Aqua\images\common\invalid-line.gif" />
  450. <Content Include="scripts\ui\skins\Aqua\images\common\table.png" />
  451. <Content Include="scripts\ui\skins\Aqua\images\common\toggle.gif" />
  452. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-panel-title-over.gif" />
  453. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-panel-title-pressed.gif" />
  454. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-panel-title.gif" />
  455. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-tab-title-over.gif" />
  456. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-tab-title-pressed.gif" />
  457. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-tab-title.gif" />
  458. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-text.gif" />
  459. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-trigger-over.gif" />
  460. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-trigger-pressed.gif" />
  461. <Content Include="scripts\ui\skins\Aqua\images\controls\bg-trigger.gif" />
  462. <Content Include="scripts\ui\skins\Aqua\images\controls\btn-l.gif" />
  463. <Content Include="scripts\ui\skins\Aqua\images\controls\btn-r.gif" />
  464. <Content Include="scripts\ui\skins\Aqua\images\controls\btn.gif" />
  465. <Content Include="scripts\ui\skins\Aqua\images\controls\button-bg-over.gif" />
  466. <Content Include="scripts\ui\skins\Aqua\images\controls\button-bg.gif" />
  467. <Content Include="scripts\ui\skins\Aqua\images\controls\checkbox.gif" />
  468. <Content Include="scripts\ui\skins\Aqua\images\controls\dateeditor-bar-bg.gif" />
  469. <Content Include="scripts\ui\skins\Aqua\images\controls\dateeditor-header-bg.gif" />
  470. <Content Include="scripts\ui\skins\Aqua\images\controls\radio.gif" />
  471. <Content Include="scripts\ui\skins\Aqua\images\dateeditor\date.gif" />
  472. <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-first.gif" />
  473. <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-last.gif" />
  474. <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-next.gif" />
  475. <Content Include="scripts\ui\skins\Aqua\images\dateeditor\icon-prev.gif" />
  476. <Content Include="scripts\ui\skins\Aqua\images\icon\cross.gif" />
  477. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-select.gif" />
  478. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-unselect.gif" />
  479. <Content Include="scripts\ui\skins\Aqua\images\icon\spr_icons.gif" />
  480. <Content Include="scripts\ui\skins\Aqua\images\layout\panel-header2.gif" />
  481. <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading.gif" />
  482. <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading2.gif" />
  483. <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading3.gif" />
  484. <Content Include="scripts\ui\skins\Aqua\images\tree\nodeloading4.gif" />
  485. <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_55_fbf9ee_1x400.png" />
  486. <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_65_ffffff_1x400.png" />
  487. <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_75_dadada_1x400.png" />
  488. <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_75_e6e6e6_1x400.png" />
  489. <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_glass_95_fef1ec_1x400.png" />
  490. <Content Include="scripts\ui\skins\Aqua\images\ui\ui-bg_highlight-soft_75_cccccc_1x100.png" />
  491. <Content Include="scripts\ui\skins\Aqua\images\win\box-icons.gif" />
  492. <Content Include="scripts\ui\skins\Aqua\images\win\box.gif" />
  493. <Content Include="scripts\ui\skins\Aqua\images\win\dialog-bc.gif" />
  494. <Content Include="scripts\ui\skins\Aqua\images\win\dialog-icons.gif" />
  495. <Content Include="scripts\ui\skins\Aqua\images\win\dialog-tc.gif" />
  496. <Content Include="scripts\ui\skins\Aqua\images\win\dialog-winbtns.gif" />
  497. <Content Include="scripts\ui\skins\Aqua\images\win\dialog.gif" />
  498. <Content Include="scripts\ui\skins\Aqua\images\win\dialogbtn.gif" />
  499. <Content Include="scripts\ui\skins\Aqua\images\win\taskbar-task.gif" />
  500. <Content Include="scripts\ui\skins\Aqua\images\win\taskbar.gif" />
  501. <Content Include="scripts\ui\skins\Aqua\images\win\taskbar.png" />
  502. <Content Include="scripts\ui\skins\Aqua\images\win\taskicon.gif" />
  503. <Content Include="scripts\ui\skins\Gray2014\css\all.css" />
  504. <Content Include="scripts\ui\skins\Gray2014\css\common.css" />
  505. <Content Include="scripts\ui\skins\Gray2014\css\dialog.css" />
  506. <Content Include="scripts\ui\skins\Gray2014\css\form.css" />
  507. <Content Include="scripts\ui\skins\Gray2014\css\grid.css" />
  508. <Content Include="scripts\ui\skins\Gray2014\css\layout.css" />
  509. <Content Include="scripts\ui\skins\Gray2014\css\tab.css" />
  510. <Content Include="scripts\ui\skins\Gray2014\images\gridheader.png" />
  511. <Content Include="scripts\ui\skins\Gray2014\images\layout\accordion-header.gif" />
  512. <Content Include="scripts\ui\skins\Gray2014\images\layout\icon-close-over.gif" />
  513. <Content Include="scripts\ui\skins\Gray2014\images\layout\icon-close.gif" />
  514. <Content Include="scripts\ui\skins\Gray2014\images\layout\layout-header.gif" />
  515. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-bg.gif" />
  516. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-bg.gif" />
  517. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-left-bg.gif" />
  518. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-left-selected.gif" />
  519. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-right-bg.gif" />
  520. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-right-selected.gif" />
  521. <Content Include="scripts\ui\skins\Gray2014\images\layout\tabs-item-selected.gif" />
  522. <Content Include="scripts\ui\skins\Gray2014\images\layout\togglebar.gif" />
  523. <Content Include="scripts\ui\skins\Gray2014\images\tab_arrow_spr.png" />
  524. <Content Include="scripts\ui\skins\Gray2014\images\tab_close.png" />
  525. <Content Include="scripts\ui\skins\Gray2014\images\ui\btn.gif" />
  526. <Content Include="scripts\ui\skins\Gray2014\images\ui\button-disabled.gif" />
  527. <Content Include="scripts\ui\skins\Gray2014\images\ui\button-over.gif" />
  528. <Content Include="scripts\ui\skins\Gray2014\images\ui\button.gif" />
  529. <Content Include="scripts\ui\skins\Gray2014\images\ui\button1.gif" />
  530. <Content Include="scripts\ui\skins\Gray2014\images\ui\button2.gif" />
  531. <Content Include="scripts\ui\skins\Gray2014\images\ui\date.gif" />
  532. <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-bar.gif" />
  533. <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-btn-over.gif" />
  534. <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-btn.gif" />
  535. <Content Include="scripts\ui\skins\Gray2014\images\ui\dateeditor-thead.gif" />
  536. <Content Include="scripts\ui\skins\Gray2014\images\ui\grid-detail-close.gif" />
  537. <Content Include="scripts\ui\skins\Gray2014\images\ui\grid-detail-open.gif" />
  538. <Content Include="scripts\ui\skins\Gray2014\images\ui\gridalt.gif" />
  539. <Content Include="scripts\ui\skins\Gray2014\images\ui\gridbar.jpg" />
  540. <Content Include="scripts\ui\skins\Gray2014\images\ui\grideditor.gif" />
  541. <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-down.gif" />
  542. <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-select.gif" />
  543. <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-select2.gif" />
  544. <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-unselect.gif" />
  545. <Content Include="scripts\ui\skins\Gray2014\images\ui\icon-up.gif" />
  546. <Content Include="scripts\ui\skins\Gray2014\images\ui\input.gif" />
  547. <Content Include="scripts\ui\skins\Gray2014\images\ui\inputdisabled.gif" />
  548. <Content Include="scripts\ui\skins\Gray2014\images\ui\loading.gif" />
  549. <Content Include="scripts\ui\skins\Gray2014\images\ui\loading2.gif" />
  550. <Content Include="scripts\ui\skins\Gray2014\images\ui\loading3.gif" />
  551. <Content Include="scripts\ui\skins\Gray2014\images\ui\loading4.gif" />
  552. <Content Include="scripts\ui\skins\Gray2014\images\ui\loadingl.gif" />
  553. <Content Include="scripts\ui\skins\Gray2014\images\ui\panel-btn.gif" />
  554. <Content Include="scripts\ui\skins\Gray2014\images\ui\spr_icons.gif" />
  555. <Content Include="scripts\ui\skins\Gray2014\images\ui\trigger.gif" />
  556. <Content Include="scripts\ui\skins\Gray2014\images\win\dialog-winbtns.gif" />
  557. <Content Include="scripts\ui\skins\Gray2014\images\win\dialogbtn.gif" />
  558. <Content Include="scripts\ui\skins\Gray2014\images\win\dialogicon.gif" />
  559. <Content Include="scripts\ui\skins\Gray\css\all.css" />
  560. <Content Include="scripts\ui\skins\Gray\css\common.css" />
  561. <Content Include="scripts\ui\skins\Gray\css\dialog.css" />
  562. <Content Include="scripts\ui\skins\Gray\css\form.css" />
  563. <Content Include="scripts\ui\skins\Gray\css\grid.css" />
  564. <Content Include="scripts\ui\skins\Gray\css\layout.css" />
  565. <Content Include="scripts\ui\skins\Gray\css\tab.css" />
  566. <Content Include="scripts\ui\skins\Gray\images\layout\accordion-header.gif" />
  567. <Content Include="scripts\ui\skins\Gray\images\layout\icon-close-over.gif" />
  568. <Content Include="scripts\ui\skins\Gray\images\layout\icon-close.gif" />
  569. <Content Include="scripts\ui\skins\Gray\images\layout\layout-header.gif" />
  570. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-bg.gif" />
  571. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-bg.gif" />
  572. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-left-bg.gif" />
  573. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-left-selected.gif" />
  574. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-right-bg.gif" />
  575. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-right-selected.gif" />
  576. <Content Include="scripts\ui\skins\Gray\images\layout\tabs-item-selected.gif" />
  577. <Content Include="scripts\ui\skins\Gray\images\layout\togglebar.gif" />
  578. <Content Include="scripts\ui\skins\Gray\images\ui\btn.gif" />
  579. <Content Include="scripts\ui\skins\Gray\images\ui\button-disabled.gif" />
  580. <Content Include="scripts\ui\skins\Gray\images\ui\button-over.gif" />
  581. <Content Include="scripts\ui\skins\Gray\images\ui\button.gif" />
  582. <Content Include="scripts\ui\skins\Gray\images\ui\button1.gif" />
  583. <Content Include="scripts\ui\skins\Gray\images\ui\button2.gif" />
  584. <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-bar.gif" />
  585. <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-btn-over.gif" />
  586. <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-btn.gif" />
  587. <Content Include="scripts\ui\skins\Gray\images\ui\dateeditor-thead.gif" />
  588. <Content Include="scripts\ui\skins\Gray\images\ui\grid-detail-close.gif" />
  589. <Content Include="scripts\ui\skins\Gray\images\ui\grid-detail-open.gif" />
  590. <Content Include="scripts\ui\skins\Gray\images\ui\gridalt.gif" />
  591. <Content Include="scripts\ui\skins\Gray\images\ui\gridbar.jpg" />
  592. <Content Include="scripts\ui\skins\Gray\images\ui\grideditor.gif" />
  593. <Content Include="scripts\ui\skins\Gray\images\ui\icon-down.gif" />
  594. <Content Include="scripts\ui\skins\Gray\images\ui\icon-select.gif" />
  595. <Content Include="scripts\ui\skins\Gray\images\ui\icon-unselect.gif" />
  596. <Content Include="scripts\ui\skins\Gray\images\ui\icon-up.gif" />
  597. <Content Include="scripts\ui\skins\Gray\images\ui\input.gif" />
  598. <Content Include="scripts\ui\skins\Gray\images\ui\inputdisabled.gif" />
  599. <Content Include="scripts\ui\skins\Gray\images\ui\loading.gif" />
  600. <Content Include="scripts\ui\skins\Gray\images\ui\loading2.gif" />
  601. <Content Include="scripts\ui\skins\Gray\images\ui\loading3.gif" />
  602. <Content Include="scripts\ui\skins\Gray\images\ui\loading4.gif" />
  603. <Content Include="scripts\ui\skins\Gray\images\ui\trigger.gif" />
  604. <Content Include="scripts\ui\skins\Gray\images\win\dialog-winbtns.gif" />
  605. <Content Include="scripts\ui\skins\Gray\images\win\dialogbtn.gif" />
  606. <Content Include="scripts\ui\skins\Gray\images\win\dialogicon.gif" />
  607. <Content Include="scripts\ui\skins\icons\16_excel.gif" />
  608. <Content Include="scripts\ui\skins\icons\add.gif" />
  609. <Content Include="scripts\ui\skins\icons\AddToLiveCalendar.gif" />
  610. <Content Include="scripts\ui\skins\icons\archives.gif" />
  611. <Content Include="scripts\ui\skins\icons\attibutes.gif" />
  612. <Content Include="scripts\ui\skins\icons\back.gif" />
  613. <Content Include="scripts\ui\skins\icons\bluebook.gif" />
  614. <Content Include="scripts\ui\skins\icons\bookpen.gif" />
  615. <Content Include="scripts\ui\skins\icons\busy.gif" />
  616. <Content Include="scripts\ui\skins\icons\calendar.gif" />
  617. <Content Include="scripts\ui\skins\icons\candle.gif" />
  618. <Content Include="scripts\ui\skins\icons\coffee.gif" />
  619. <Content Include="scripts\ui\skins\icons\comment.gif" />
  620. <Content Include="scripts\ui\skins\icons\communication.gif" />
  621. <Content Include="scripts\ui\skins\icons\config.gif" />
  622. <Content Include="scripts\ui\skins\icons\customers.gif" />
  623. <Content Include="scripts\ui\skins\icons\cut.gif" />
  624. <Content Include="scripts\ui\skins\icons\database.gif" />
  625. <Content Include="scripts\ui\skins\icons\delete.gif" />
  626. <Content Include="scripts\ui\skins\icons\discuss.gif" />
  627. <Content Include="scripts\ui\skins\icons\down.gif" />
  628. <Content Include="scripts\ui\skins\icons\edit.gif" />
  629. <Content Include="scripts\ui\skins\icons\graywarn.gif" />
  630. <Content Include="scripts\ui\skins\icons\greenwarn.gif" />
  631. <Content Include="scripts\ui\skins\icons\help.gif" />
  632. <Content Include="scripts\ui\skins\icons\home.gif" />
  633. <Content Include="scripts\ui\skins\icons\left.png" />
  634. <Content Include="scripts\ui\skins\icons\leftall.png" />
  635. <Content Include="scripts\ui\skins\icons\lock.gif" />
  636. <Content Include="scripts\ui\skins\icons\logout.gif" />
  637. <Content Include="scripts\ui\skins\icons\mailbox.gif" />
  638. <Content Include="scripts\ui\skins\icons\memeber.gif" />
  639. <Content Include="scripts\ui\skins\icons\modify.gif" />
  640. <Content Include="scripts\ui\skins\icons\msn.gif" />
  641. <Content Include="scripts\ui\skins\icons\myaccount.gif" />
  642. <Content Include="scripts\ui\skins\icons\ok.gif" />
  643. <Content Include="scripts\ui\skins\icons\outbox.gif" />
  644. <Content Include="scripts\ui\skins\icons\pager.gif" />
  645. <Content Include="scripts\ui\skins\icons\photograph.gif" />
  646. <Content Include="scripts\ui\skins\icons\plus.gif" />
  647. <Content Include="scripts\ui\skins\icons\prev.gif" />
  648. <Content Include="scripts\ui\skins\icons\print.gif" />
  649. <Content Include="scripts\ui\skins\icons\process.gif" />
  650. <Content Include="scripts\ui\skins\icons\qq.gif" />
  651. <Content Include="scripts\ui\skins\icons\refresh.gif" />
  652. <Content Include="scripts\ui\skins\icons\right.gif" />
  653. <Content Include="scripts\ui\skins\icons\right.png" />
  654. <Content Include="scripts\ui\skins\icons\rightall.png" />
  655. <Content Include="scripts\ui\skins\icons\role.gif" />
  656. <Content Include="scripts\ui\skins\icons\save-disabled.gif" />
  657. <Content Include="scripts\ui\skins\icons\save.gif" />
  658. <Content Include="scripts\ui\skins\icons\search.gif" />
  659. <Content Include="scripts\ui\skins\icons\search2.gif" />
  660. <Content Include="scripts\ui\skins\icons\settings.gif" />
  661. <Content Include="scripts\ui\skins\icons\true.gif" />
  662. <Content Include="scripts\ui\skins\icons\up.gif" />
  663. <Content Include="scripts\ui\skins\icons\view.gif" />
  664. <Content Include="scripts\ui\skins\ligerui-icons.css" />
  665. <Content Include="scripts\ui\skins\Silvery\css\form.css" />
  666. <Content Include="scripts\ui\skins\Silvery\css\grid.css" />
  667. <Content Include="scripts\ui\skins\Silvery\css\layout.css" />
  668. <Content Include="scripts\ui\skins\Silvery\css\style.css" />
  669. <Content Include="scripts\ui\skins\Silvery\images\form\checkboxradio.gif" />
  670. <Content Include="scripts\ui\skins\Silvery\images\form\icon-down-over.gif" />
  671. <Content Include="scripts\ui\skins\Silvery\images\form\icon-down.gif" />
  672. <Content Include="scripts\ui\skins\Silvery\images\form\icon-up-over.gif" />
  673. <Content Include="scripts\ui\skins\Silvery\images\form\icon-up.gif" />
  674. <Content Include="scripts\ui\skins\Silvery\images\form\invalid_line.gif" />
  675. <Content Include="scripts\ui\skins\Silvery\images\form\text-date-icon.gif" />
  676. <Content Include="scripts\ui\skins\Silvery\images\form\text-down-icon.gif" />
  677. <Content Include="scripts\ui\skins\Silvery\images\form\text-focus.gif" />
  678. <Content Include="scripts\ui\skins\Silvery\images\form\text-l-focus.gif" />
  679. <Content Include="scripts\ui\skins\Silvery\images\form\text-l-over.gif" />
  680. <Content Include="scripts\ui\skins\Silvery\images\form\text-l.gif" />
  681. <Content Include="scripts\ui\skins\Silvery\images\form\text-over.gif" />
  682. <Content Include="scripts\ui\skins\Silvery\images\form\text-r-focus.gif" />
  683. <Content Include="scripts\ui\skins\Silvery\images\form\text-r-over.gif" />
  684. <Content Include="scripts\ui\skins\Silvery\images\form\text-r.gif" />
  685. <Content Include="scripts\ui\skins\Silvery\images\form\text.gif" />
  686. <Content Include="scripts\ui\skins\Silvery\images\grid\gridheaderbg.jpg" />
  687. <Content Include="scripts\ui\skins\Silvery\images\layout\accordion-header-over.jpg" />
  688. <Content Include="scripts\ui\skins\Silvery\images\layout\accordion-header.jpg" />
  689. <Content Include="scripts\ui\skins\Silvery\images\layout\layout-header-over.jpg" />
  690. <Content Include="scripts\ui\skins\Silvery\images\layout\layout-header.jpg" />
  691. <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-bg.jpg" />
  692. <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-bg.jpg" />
  693. <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-left-bg.gif" />
  694. <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-over-bg.gif" />
  695. <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-item-right-bg.gif" />
  696. <Content Include="scripts\ui\skins\Silvery\images\layout\tabs-tools.gif" />
  697. <Content Include="scripts\ui\skins\Tab\css\all.css" />
  698. <Content Include="scripts\ui\skins\Tab\css\dialog.css" />
  699. <Content Include="scripts\ui\skins\Tab\css\form.css" />
  700. <Content Include="scripts\ui\skins\Tab\css\grid.css" />
  701. <Content Include="scripts\ui\skins\Tab\css\tab.css" />
  702. <Content Include="scripts\ui\skins\Tab\images\gridheader.png" />
  703. <Content Include="scripts\ui\skins\Tab\images\layout\accordion-header.gif" />
  704. <Content Include="scripts\ui\skins\Tab\images\layout\icon-close-over.gif" />
  705. <Content Include="scripts\ui\skins\Tab\images\layout\icon-close.gif" />
  706. <Content Include="scripts\ui\skins\Tab\images\layout\layout-header.gif" />
  707. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-bg.gif" />
  708. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-bg.gif" />
  709. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-left-bg.gif" />
  710. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-left-selected.gif" />
  711. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-right-bg.gif" />
  712. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-right-selected.gif" />
  713. <Content Include="scripts\ui\skins\Tab\images\layout\tabs-item-selected.gif" />
  714. <Content Include="scripts\ui\skins\Tab\images\layout\togglebar.gif" />
  715. <Content Include="scripts\ui\skins\Tab\images\tab_arrow_spr.png" />
  716. <Content Include="scripts\ui\skins\Tab\images\tab_close.png" />
  717. <Content Include="scripts\ui\skins\Tab\images\ui\btn.gif" />
  718. <Content Include="scripts\ui\skins\Tab\images\ui\button-disabled.gif" />
  719. <Content Include="scripts\ui\skins\Tab\images\ui\button-over.gif" />
  720. <Content Include="scripts\ui\skins\Tab\images\ui\button.gif" />
  721. <Content Include="scripts\ui\skins\Tab\images\ui\button1.gif" />
  722. <Content Include="scripts\ui\skins\Tab\images\ui\button2.gif" />
  723. <Content Include="scripts\ui\skins\Tab\images\ui\date.gif" />
  724. <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-bar.gif" />
  725. <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-btn-over.gif" />
  726. <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-btn.gif" />
  727. <Content Include="scripts\ui\skins\Tab\images\ui\dateeditor-thead.gif" />
  728. <Content Include="scripts\ui\skins\Tab\images\ui\grid-detail-close.gif" />
  729. <Content Include="scripts\ui\skins\Tab\images\ui\grid-detail-open.gif" />
  730. <Content Include="scripts\ui\skins\Tab\images\ui\gridalt.gif" />
  731. <Content Include="scripts\ui\skins\Tab\images\ui\gridbar.jpg" />
  732. <Content Include="scripts\ui\skins\Tab\images\ui\grideditor.gif" />
  733. <Content Include="scripts\ui\skins\Tab\images\ui\icon-down.gif" />
  734. <Content Include="scripts\ui\skins\Tab\images\ui\icon-select.gif" />
  735. <Content Include="scripts\ui\skins\Tab\images\ui\icon-select2.gif" />
  736. <Content Include="scripts\ui\skins\Tab\images\ui\icon-unselect.gif" />
  737. <Content Include="scripts\ui\skins\Tab\images\ui\icon-up.gif" />
  738. <Content Include="scripts\ui\skins\Tab\images\ui\input.gif" />
  739. <Content Include="scripts\ui\skins\Tab\images\ui\inputdisabled.gif" />
  740. <Content Include="scripts\ui\skins\Tab\images\ui\loading.gif" />
  741. <Content Include="scripts\ui\skins\Tab\images\ui\loading2.gif" />
  742. <Content Include="scripts\ui\skins\Tab\images\ui\loading3.gif" />
  743. <Content Include="scripts\ui\skins\Tab\images\ui\loading4.gif" />
  744. <Content Include="scripts\ui\skins\Tab\images\ui\loadingl.gif" />
  745. <Content Include="scripts\ui\skins\Tab\images\ui\spr_icons.gif" />
  746. <Content Include="scripts\ui\skins\Tab\images\ui\trigger.gif" />
  747. <Content Include="scripts\ui\skins\Tab\images\win\dialog-winbtns.gif" />
  748. <Content Include="scripts\ui\skins\Tab\images\win\dialogbtn.gif" />
  749. <Content Include="scripts\ui\skins\Tab\images\win\dialogicon.gif" />
  750. <Content Include="seatformjs\ocxevent.js" />
  751. <Content Include="seatformjs\ocxopt.js" />
  752. <Content Include="seatformjs\formopt.js" />
  753. <Content Include="smsmanage\smsSent.aspx" />
  754. <Content Include="smsmanage\SmsSentAlready.aspx" />
  755. <Content Include="smsmanage\SmsSentWeiFaSong.aspx" />
  756. <Content Include="smsmanage\smsTypeEdit.aspx" />
  757. <Content Include="smsmanage\smsTypeList.aspx" />
  758. <Content Include="smsmanage\UserEdit.aspx" />
  759. <Content Include="sysmanage\basedataedit.aspx" />
  760. <Content Include="sysmanage\basedatalist.aspx" />
  761. <Content Include="sysmanage\calllogs.aspx" />
  762. <Content Include="sysmanage\configedit.aspx" />
  763. <Content Include="sysmanage\configlist.aspx" />
  764. <Content Include="sysmanage\deptdeit.aspx" />
  765. <Content Include="sysmanage\deptlist.aspx" />
  766. <Content Include="sysmanage\DeptlistAddandEdit.aspx" />
  767. <Content Include="sysmanage\dictionarylistedit.aspx" />
  768. <Content Include="sysmanage\dictionarymanage.aspx" />
  769. <Content Include="sysmanage\dictionarytreeedit.aspx" />
  770. <Content Include="sysmanage\functionanniuedit.aspx" />
  771. <Content Include="sysmanage\functionmanage.aspx" />
  772. <Content Include="sysmanage\functiontreeedit.aspx" />
  773. <Content Include="sysmanage\loginlogs.aspx" />
  774. <Content Include="sysmanage\optlogs.aspx" />
  775. <Content Include="sysmanage\ResetPassword.aspx" />
  776. <Content Include="sysmanage\rolelist.aspx" />
  777. <Content Include="sysmanage\rolelistedit.aspx" />
  778. <Content Include="sysmanage\sysconfigedit.aspx" />
  779. <Content Include="sysmanage\sysconfigmanage.aspx" />
  780. <Content Include="sysmanage\userAllocationRole.aspx" />
  781. <Content Include="sysmanage\useredit.aspx" />
  782. <Content Include="sysmanage\userlist.aspx" />
  783. <Content Include="favicon.ico" />
  784. <Content Include="images\1.png" />
  785. <Content Include="images\arrow_left.png" />
  786. <Content Include="images\bg.jpg" />
  787. <Content Include="images\btn_bg.gif" />
  788. <Content Include="images\btn_ok.gif" />
  789. <Content Include="images\btn_ok_hover.gif" />
  790. <Content Include="images\calendar.js" />
  791. <Content Include="images\CheckCode.gif" />
  792. <Content Include="images\default_user_avatar.gif" />
  793. <Content Include="images\desktop.css" />
  794. <Content Include="images\folder.gif" />
  795. <Content Include="images\folder_open.gif" />
  796. <Content Include="images\foot_bg.gif" />
  797. <Content Include="images\head_bg.gif" />
  798. <Content Include="images\head_bg_line.gif" />
  799. <Content Include="images\head_logo.png" />
  800. <Content Include="images\home.gif" />
  801. <Content Include="images\hx.png" />
  802. <Content Include="images\ico-0.png" />
  803. <Content Include="images\ico-0_.png" />
  804. <Content Include="images\ico-1.png" />
  805. <Content Include="images\ico-1_.png" />
  806. <Content Include="images\ico-2.png" />
  807. <Content Include="images\ico-2_.png" />
  808. <Content Include="images\ico-3.png" />
  809. <Content Include="images\ico-3_.png" />
  810. <Content Include="images\ico-4.png" />
  811. <Content Include="images\ico-4_.png" />
  812. <Content Include="images\ico-5.png" />
  813. <Content Include="images\ico-5_.png" />
  814. <Content Include="images\ico-6.png" />
  815. <Content Include="images\ico-show-img.png" />
  816. <Content Include="images\ico-show-txt.png" />
  817. <Content Include="images\icon_asc.gif" />
  818. <Content Include="images\icon_attach.png" />
  819. <Content Include="images\icon_audit.gif" />
  820. <Content Include="images\icon_channel.png" />
  821. <Content Include="images\icon_comment.gif" />
  822. <Content Include="images\icon_correct.png" />
  823. <Content Include="images\icon_del.gif" />
  824. <Content Include="images\icon_del2.gif" />
  825. <Content Include="images\icon_desc.gif" />
  826. <Content Include="images\icon_disable.png" />
  827. <Content Include="images\icon_edit.gif" />
  828. <Content Include="images\icon_log.png" />
  829. <Content Include="images\icon_manaer.png" />
  830. <Content Include="images\icon_mark.png" />
  831. <Content Include="images\icon_msg.gif" />
  832. <Content Include="images\icon_no.png" />
  833. <Content Include="images\icon_plugin.png" />
  834. <Content Include="images\icon_setting.png" />
  835. <Content Include="images\icon_site.gif" />
  836. <Content Include="images\icon_templet.png" />
  837. <Content Include="images\icon_user.png" />
  838. <Content Include="images\icon_view.gif" />
  839. <Content Include="images\ie_update.jpg" />
  840. <Content Include="images\jd.css" />
  841. <Content Include="images\js_01.gif" />
  842. <Content Include="images\js_02.gif" />
  843. <Content Include="images\li_bg.gif" />
  844. <Content Include="images\loading.gif" />
  845. <Content Include="images\loading2.gif" />
  846. <Content Include="images\login.css" />
  847. <Content Include="images\login_bg.gif" />
  848. <Content Include="images\login_bg1.gif" />
  849. <Content Include="images\login_btn_bg.gif" />
  850. <Content Include="images\login_img.gif" />
  851. <Content Include="images\logo.gif" />
  852. <Content Include="images\memeber.gif" />
  853. <Content Include="images\menu_icons.gif" />
  854. <Content Include="images\msg_icon.gif" />
  855. <Content Include="images\nav_icon.gif" />
  856. <Content Include="images\new.gif" />
  857. <Content Include="images\noimg.gif" />
  858. <Content Include="images\order_speed.gif" />
  859. <Content Include="images\selfImg\resize.gif" />
  860. <Content Include="images\selfImg\runing.gif" />
  861. <Content Include="images\selfImg\tb.gif" />
  862. <Content Include="images\style.css" />
  863. <Content Include="images\st_x.png" />
  864. <Content Include="images\sx_s.png" />
  865. <Content Include="images\t.gif" />
  866. <Content Include="images\tabicons.png" />
  867. <Content Include="images\tools_bg.gif" />
  868. <Content Include="images\tools_btn_bg.gif" />
  869. <Content Include="images\tools_icon.gif" />
  870. <Content Include="images\upbtn_bg.gif" />
  871. <Content Include="images\upfile_bg.gif" />
  872. <Content Include="images\user_toolbar.gif" />
  873. <Content Include="images\_desktop\both.gif" />
  874. <Content Include="images\_desktop\btn_1.gif" />
  875. <Content Include="images\_desktop\btn_10.gif" />
  876. <Content Include="images\_desktop\btn_11.gif" />
  877. <Content Include="images\_desktop\btn_12.gif" />
  878. <Content Include="images\_desktop\btn_13.gif" />
  879. <Content Include="images\_desktop\btn_14.gif" />
  880. <Content Include="images\_desktop\btn_15.gif" />
  881. <Content Include="images\_desktop\btn_16.gif" />
  882. <Content Include="images\_desktop\btn_17.gif" />
  883. <Content Include="images\_desktop\btn_18.gif" />
  884. <Content Include="images\_desktop\btn_19.gif" />
  885. <Content Include="images\_desktop\btn_2.gif" />
  886. <Content Include="images\_desktop\btn_20.gif" />
  887. <Content Include="images\_desktop\btn_21.gif" />
  888. <Content Include="images\_desktop\btn_22.gif" />
  889. <Content Include="images\_desktop\btn_23.gif" />
  890. <Content Include="images\_desktop\btn_24.gif" />
  891. <Content Include="images\_desktop\btn_25.gif" />
  892. <Content Include="images\_desktop\btn_26.gif" />
  893. <Content Include="images\_desktop\btn_3.gif" />
  894. <Content Include="images\_desktop\btn_4.gif" />
  895. <Content Include="images\_desktop\btn_5.gif" />
  896. <Content Include="images\_desktop\btn_6.gif" />
  897. <Content Include="images\_desktop\btn_7.gif" />
  898. <Content Include="images\_desktop\btn_8.gif" />
  899. <Content Include="images\_desktop\btn_9.gif" />
  900. <Content Include="images\_desktop\corner_1.gif" />
  901. <Content Include="images\_desktop\corner_2.gif" />
  902. <Content Include="images\_desktop\corner_3.gif" />
  903. <Content Include="images\_desktop\corner_3_1.gif" />
  904. <Content Include="images\_desktop\corner_3_11.gif" />
  905. <Content Include="images\_desktop\corner_3_111.gif" />
  906. <Content Include="images\_desktop\corner_3_2.gif" />
  907. <Content Include="images\_desktop\corner_3_21.gif" />
  908. <Content Include="images\_desktop\corner_4.gif" />
  909. <Content Include="images\_desktop\corner_4_1.gif" />
  910. <Content Include="images\_desktop\corner_4_2.gif" />
  911. <Content Include="images\_desktop\corner_4_21.gif" />
  912. <Content Include="images\_desktop\down_1.gif" />
  913. <Content Include="images\_desktop\d_0.gif" />
  914. <Content Include="images\_desktop\l_0.gif" />
  915. <Content Include="images\_desktop\l_01.gif" />
  916. <Content Include="images\_desktop\l_1_1.gif" />
  917. <Content Include="images\_desktop\l_1_2.gif" />
  918. <Content Include="images\_desktop\l_2_1.gif" />
  919. <Content Include="images\_desktop\l_2_2.gif" />
  920. <Content Include="images\_desktop\l_2_3.gif" />
  921. <Content Include="images\_desktop\l_2_4.gif" />
  922. <Content Include="images\_desktop\l_2_5.gif" />
  923. <Content Include="images\_desktop\m_0.gif" />
  924. <Content Include="images\_desktop\r_0.gif" />
  925. <Content Include="images\_desktop\r_1.gif" />
  926. <Content Include="images\_desktop\r_2.gif" />
  927. <Content Include="images\_desktop\statusbar.gif" />
  928. <Content Include="images\_desktop\tableft10.gif" />
  929. <Content Include="images\_desktop\tableft11.gif" />
  930. <Content Include="images\_desktop\tableft12.gif" />
  931. <Content Include="images\_desktop\tabright10.gif" />
  932. <Content Include="images\_desktop\tabright11.gif" />
  933. <Content Include="images\_desktop\tabright12.gif" />
  934. <Content Include="images\_desktop\upr_01.gif" />
  935. <Content Include="images\_desktop\upr_1.gif" />
  936. <Content Include="images\_desktop\u_0.gif" />
  937. <Content Include="pagenull.aspx" />
  938. <Content Include="scripts\function.js" />
  939. <Content Include="scripts\FusionCharts.js" />
  940. <Content Include="scripts\idCard.js" />
  941. <Content Include="scripts\jquery\jquery-1.3.2.min.js" />
  942. <Content Include="scripts\jquery\jquery-1.8.3.min.js" />
  943. <Content Include="scripts\jquery\validate_expand.js" />
  944. <Content Include="scripts\My97DatePicker\calendar.js" />
  945. <Content Include="scripts\My97DatePicker\lang\en.js" />
  946. <Content Include="scripts\My97DatePicker\lang\zh-cn.js" />
  947. <Content Include="scripts\My97DatePicker\lang\zh-tw.js" />
  948. <Content Include="scripts\My97DatePicker\skin\datePicker.gif" />
  949. <Content Include="scripts\My97DatePicker\skin\default\datepicker.css" />
  950. <Content Include="scripts\My97DatePicker\skin\default\img.gif" />
  951. <Content Include="scripts\My97DatePicker\skin\WdatePicker.css" />
  952. <Content Include="scripts\My97DatePicker\skin\whyGreen\bg.jpg" />
  953. <Content Include="scripts\My97DatePicker\skin\whyGreen\datepicker.css" />
  954. <Content Include="scripts\My97DatePicker\skin\whyGreen\img.gif" />
  955. <Content Include="scripts\My97DatePicker\WdatePicker.js" />
  956. <Content Include="scripts\ui\js\ligerDialog.js" />
  957. <Content Include="css\Jcrop.gif" />
  958. <Content Include="css\jquery.Jcrop.css" />
  959. <Content Include="css\validate.css" />
  960. <Content Include="editor\kindeditor-min.js" />
  961. <Content Include="editor\kindeditor.js" />
  962. <Content Include="editor\lang\ar.js" />
  963. <Content Include="editor\lang\en.js" />
  964. <Content Include="editor\lang\zh_CN.js" />
  965. <Content Include="editor\lang\zh_TW.js" />
  966. <Content Include="editor\plugins\anchor\anchor.js" />
  967. <Content Include="editor\plugins\clearhtml\clearhtml.js" />
  968. <Content Include="editor\plugins\code\code.js" />
  969. <Content Include="editor\plugins\code\prettify.css" />
  970. <Content Include="editor\plugins\code\prettify.js" />
  971. <Content Include="editor\plugins\emoticons\emoticons.js" />
  972. <Content Include="editor\plugins\emoticons\images\0.gif" />
  973. <Content Include="editor\plugins\emoticons\images\1.gif" />
  974. <Content Include="editor\plugins\emoticons\images\10.gif" />
  975. <Content Include="editor\plugins\emoticons\images\100.gif" />
  976. <Content Include="editor\plugins\emoticons\images\101.gif" />
  977. <Content Include="editor\plugins\emoticons\images\102.gif" />
  978. <Content Include="editor\plugins\emoticons\images\103.gif" />
  979. <Content Include="editor\plugins\emoticons\images\104.gif" />
  980. <Content Include="editor\plugins\emoticons\images\105.gif" />
  981. <Content Include="editor\plugins\emoticons\images\106.gif" />
  982. <Content Include="editor\plugins\emoticons\images\107.gif" />
  983. <Content Include="editor\plugins\emoticons\images\108.gif" />
  984. <Content Include="editor\plugins\emoticons\images\109.gif" />
  985. <Content Include="editor\plugins\emoticons\images\11.gif" />
  986. <Content Include="editor\plugins\emoticons\images\110.gif" />
  987. <Content Include="editor\plugins\emoticons\images\111.gif" />
  988. <Content Include="editor\plugins\emoticons\images\112.gif" />
  989. <Content Include="editor\plugins\emoticons\images\113.gif" />
  990. <Content Include="editor\plugins\emoticons\images\114.gif" />
  991. <Content Include="editor\plugins\emoticons\images\115.gif" />
  992. <Content Include="editor\plugins\emoticons\images\116.gif" />
  993. <Content Include="editor\plugins\emoticons\images\117.gif" />
  994. <Content Include="editor\plugins\emoticons\images\118.gif" />
  995. <Content Include="editor\plugins\emoticons\images\119.gif" />
  996. <Content Include="editor\plugins\emoticons\images\12.gif" />
  997. <Content Include="editor\plugins\emoticons\images\120.gif" />
  998. <Content Include="editor\plugins\emoticons\images\121.gif" />
  999. <Content Include="editor\plugins\emoticons\images\122.gif" />
  1000. <Content Include="editor\plugins\emoticons\images\123.gif" />
  1001. <Content Include="editor\plugins\emoticons\images\124.gif" />
  1002. <Content Include="editor\plugins\emoticons\images\125.gif" />
  1003. <Content Include="editor\plugins\emoticons\images\126.gif" />
  1004. <Content Include="editor\plugins\emoticons\images\127.gif" />
  1005. <Content Include="editor\plugins\emoticons\images\128.gif" />
  1006. <Content Include="editor\plugins\emoticons\images\129.gif" />
  1007. <Content Include="editor\plugins\emoticons\images\13.gif" />
  1008. <Content Include="editor\plugins\emoticons\images\130.gif" />
  1009. <Content Include="editor\plugins\emoticons\images\131.gif" />
  1010. <Content Include="editor\plugins\emoticons\images\132.gif" />
  1011. <Content Include="editor\plugins\emoticons\images\133.gif" />
  1012. <Content Include="editor\plugins\emoticons\images\134.gif" />
  1013. <Content Include="editor\plugins\emoticons\images\14.gif" />
  1014. <Content Include="editor\plugins\emoticons\images\15.gif" />
  1015. <Content Include="editor\plugins\emoticons\images\16.gif" />
  1016. <Content Include="editor\plugins\emoticons\images\17.gif" />
  1017. <Content Include="editor\plugins\emoticons\images\18.gif" />
  1018. <Content Include="editor\plugins\emoticons\images\19.gif" />
  1019. <Content Include="editor\plugins\emoticons\images\2.gif" />
  1020. <Content Include="editor\plugins\emoticons\images\20.gif" />
  1021. <Content Include="editor\plugins\emoticons\images\21.gif" />
  1022. <Content Include="editor\plugins\emoticons\images\22.gif" />
  1023. <Content Include="editor\plugins\emoticons\images\23.gif" />
  1024. <Content Include="editor\plugins\emoticons\images\24.gif" />
  1025. <Content Include="editor\plugins\emoticons\images\25.gif" />
  1026. <Content Include="editor\plugins\emoticons\images\26.gif" />
  1027. <Content Include="editor\plugins\emoticons\images\27.gif" />
  1028. <Content Include="editor\plugins\emoticons\images\28.gif" />
  1029. <Content Include="editor\plugins\emoticons\images\29.gif" />
  1030. <Content Include="editor\plugins\emoticons\images\3.gif" />
  1031. <Content Include="editor\plugins\emoticons\images\30.gif" />
  1032. <Content Include="editor\plugins\emoticons\images\31.gif" />
  1033. <Content Include="editor\plugins\emoticons\images\32.gif" />
  1034. <Content Include="editor\plugins\emoticons\images\33.gif" />
  1035. <Content Include="editor\plugins\emoticons\images\34.gif" />
  1036. <Content Include="editor\plugins\emoticons\images\35.gif" />
  1037. <Content Include="editor\plugins\emoticons\images\36.gif" />
  1038. <Content Include="editor\plugins\emoticons\images\37.gif" />
  1039. <Content Include="editor\plugins\emoticons\images\38.gif" />
  1040. <Content Include="editor\plugins\emoticons\images\39.gif" />
  1041. <Content Include="editor\plugins\emoticons\images\4.gif" />
  1042. <Content Include="editor\plugins\emoticons\images\40.gif" />
  1043. <Content Include="editor\plugins\emoticons\images\41.gif" />
  1044. <Content Include="editor\plugins\emoticons\images\42.gif" />
  1045. <Content Include="editor\plugins\emoticons\images\43.gif" />
  1046. <Content Include="editor\plugins\emoticons\images\44.gif" />
  1047. <Content Include="editor\plugins\emoticons\images\45.gif" />
  1048. <Content Include="editor\plugins\emoticons\images\46.gif" />
  1049. <Content Include="editor\plugins\emoticons\images\47.gif" />
  1050. <Content Include="editor\plugins\emoticons\images\48.gif" />
  1051. <Content Include="editor\plugins\emoticons\images\49.gif" />
  1052. <Content Include="editor\plugins\emoticons\images\5.gif" />
  1053. <Content Include="editor\plugins\emoticons\images\50.gif" />
  1054. <Content Include="editor\plugins\emoticons\images\51.gif" />
  1055. <Content Include="editor\plugins\emoticons\images\52.gif" />
  1056. <Content Include="editor\plugins\emoticons\images\53.gif" />
  1057. <Content Include="editor\plugins\emoticons\images\54.gif" />
  1058. <Content Include="editor\plugins\emoticons\images\55.gif" />
  1059. <Content Include="editor\plugins\emoticons\images\56.gif" />
  1060. <Content Include="editor\plugins\emoticons\images\57.gif" />
  1061. <Content Include="editor\plugins\emoticons\images\58.gif" />
  1062. <Content Include="editor\plugins\emoticons\images\59.gif" />
  1063. <Content Include="editor\plugins\emoticons\images\6.gif" />
  1064. <Content Include="editor\plugins\emoticons\images\60.gif" />
  1065. <Content Include="editor\plugins\emoticons\images\61.gif" />
  1066. <Content Include="editor\plugins\emoticons\images\62.gif" />
  1067. <Content Include="editor\plugins\emoticons\images\63.gif" />
  1068. <Content Include="editor\plugins\emoticons\images\64.gif" />
  1069. <Content Include="editor\plugins\emoticons\images\65.gif" />
  1070. <Content Include="editor\plugins\emoticons\images\66.gif" />
  1071. <Content Include="editor\plugins\emoticons\images\67.gif" />
  1072. <Content Include="editor\plugins\emoticons\images\68.gif" />
  1073. <Content Include="editor\plugins\emoticons\images\69.gif" />
  1074. <Content Include="editor\plugins\emoticons\images\7.gif" />
  1075. <Content Include="editor\plugins\emoticons\images\70.gif" />
  1076. <Content Include="editor\plugins\emoticons\images\71.gif" />
  1077. <Content Include="editor\plugins\emoticons\images\72.gif" />
  1078. <Content Include="editor\plugins\emoticons\images\73.gif" />
  1079. <Content Include="editor\plugins\emoticons\images\74.gif" />
  1080. <Content Include="editor\plugins\emoticons\images\75.gif" />
  1081. <Content Include="editor\plugins\emoticons\images\76.gif" />
  1082. <Content Include="editor\plugins\emoticons\images\77.gif" />
  1083. <Content Include="editor\plugins\emoticons\images\78.gif" />
  1084. <Content Include="editor\plugins\emoticons\images\79.gif" />
  1085. <Content Include="editor\plugins\emoticons\images\8.gif" />
  1086. <Content Include="editor\plugins\emoticons\images\80.gif" />
  1087. <Content Include="editor\plugins\emoticons\images\81.gif" />
  1088. <Content Include="editor\plugins\emoticons\images\82.gif" />
  1089. <Content Include="editor\plugins\emoticons\images\83.gif" />
  1090. <Content Include="editor\plugins\emoticons\images\84.gif" />
  1091. <Content Include="editor\plugins\emoticons\images\85.gif" />
  1092. <Content Include="editor\plugins\emoticons\images\86.gif" />
  1093. <Content Include="editor\plugins\emoticons\images\87.gif" />
  1094. <Content Include="editor\plugins\emoticons\images\88.gif" />
  1095. <Content Include="editor\plugins\emoticons\images\89.gif" />
  1096. <Content Include="editor\plugins\emoticons\images\9.gif" />
  1097. <Content Include="editor\plugins\emoticons\images\90.gif" />
  1098. <Content Include="editor\plugins\emoticons\images\91.gif" />
  1099. <Content Include="editor\plugins\emoticons\images\92.gif" />
  1100. <Content Include="editor\plugins\emoticons\images\93.gif" />
  1101. <Content Include="editor\plugins\emoticons\images\94.gif" />
  1102. <Content Include="editor\plugins\emoticons\images\95.gif" />
  1103. <Content Include="editor\plugins\emoticons\images\96.gif" />
  1104. <Content Include="editor\plugins\emoticons\images\97.gif" />
  1105. <Content Include="editor\plugins\emoticons\images\98.gif" />
  1106. <Content Include="editor\plugins\emoticons\images\99.gif" />
  1107. <Content Include="editor\plugins\emoticons\images\static.gif" />
  1108. <Content Include="editor\plugins\filemanager\filemanager.js" />
  1109. <Content Include="editor\plugins\filemanager\images\file-16.gif" />
  1110. <Content Include="editor\plugins\filemanager\images\file-64.gif" />
  1111. <Content Include="editor\plugins\filemanager\images\folder-16.gif" />
  1112. <Content Include="editor\plugins\filemanager\images\folder-64.gif" />
  1113. <Content Include="editor\plugins\filemanager\images\go-up.gif" />
  1114. <Content Include="editor\plugins\flash\flash.js" />
  1115. <Content Include="editor\plugins\image\image.js" />
  1116. <Content Include="editor\plugins\image\images\align_left.gif" />
  1117. <Content Include="editor\plugins\image\images\align_right.gif" />
  1118. <Content Include="editor\plugins\image\images\align_top.gif" />
  1119. <Content Include="editor\plugins\image\images\refresh.png" />
  1120. <Content Include="editor\plugins\insertfile\insertfile.js" />
  1121. <Content Include="editor\plugins\lineheight\lineheight.js" />
  1122. <Content Include="editor\plugins\link\link.js" />
  1123. <Content Include="editor\plugins\map\map.html" />
  1124. <Content Include="editor\plugins\map\map.js" />
  1125. <Content Include="editor\plugins\media\media.js" />
  1126. <Content Include="editor\plugins\pagebreak\pagebreak.js" />
  1127. <Content Include="editor\plugins\plainpaste\plainpaste.js" />
  1128. <Content Include="editor\plugins\preview\preview.js" />
  1129. <Content Include="editor\plugins\quickformat\quickformat.js" />
  1130. <Content Include="editor\plugins\table\table.js" />
  1131. <Content Include="editor\plugins\template\html\1.html" />
  1132. <Content Include="editor\plugins\template\html\2.html" />
  1133. <Content Include="editor\plugins\template\html\3.html" />
  1134. <Content Include="editor\plugins\template\template.js" />
  1135. <Content Include="editor\plugins\wordpaste\wordpaste.js" />
  1136. <Content Include="editor\themes\common\anchor.gif" />
  1137. <Content Include="editor\themes\common\blank.gif" />
  1138. <Content Include="editor\themes\common\flash.gif" />
  1139. <Content Include="editor\themes\common\loading.gif" />
  1140. <Content Include="editor\themes\common\media.gif" />
  1141. <Content Include="editor\themes\common\rm.gif" />
  1142. <Content Include="editor\themes\default\background.png" />
  1143. <Content Include="editor\themes\default\default.css" />
  1144. <Content Include="editor\themes\default\default.png" />
  1145. <Content Include="editor\themes\simple\simple.css" />
  1146. <Content Include="images\msg_bg.png" />
  1147. <Content Include="images\validate_bg.gif" />
  1148. <Content Include="css\image1.gif" />
  1149. <Content Include="css\image2.gif" />
  1150. <Content Include="css\meneame.jpg" />
  1151. <Content Include="css\pagination.css" />
  1152. <Content Include="scripts\calendar.js" />
  1153. <Content Include="scripts\jquery\jquery.form.js" />
  1154. <Content Include="scripts\jquery\jquery.Jcrop.min.js" />
  1155. <Content Include="scripts\jquery\jquery.jqzoom.js" />
  1156. <Content Include="scripts\jquery\jquery.KinSlideshow-1.2.1.min.js" />
  1157. <Content Include="scripts\jquery\jquery.metadata.js" />
  1158. <Content Include="scripts\jquery\jquery.pagination.js" />
  1159. <Content Include="scripts\jquery\jquery.validate.min.js" />
  1160. <Content Include="scripts\jquery\messages_cn.js" />
  1161. <Content Include="scripts\swfupload\swfupload.handlers.js" />
  1162. <Content Include="scripts\swfupload\swfupload.js" />
  1163. <Content Include="scripts\swfupload\swfupload.queue.js" />
  1164. <Content Include="scripts\swfupload\swfupload.swf" />
  1165. <Content Include="scripts\ui\js\ligerBuild.min.js" />
  1166. <Content Include="scripts\ui\js\ligerBuild.source.js" />
  1167. <Content Include="scripts\ui\skins\Aqua\css\ligerui-all.css" />
  1168. <Content Include="scripts\ui\skins\Aqua\css\ligerui-common.css" />
  1169. <Content Include="scripts\ui\skins\Aqua\css\ligerui-dialog.css" />
  1170. <Content Include="scripts\ui\skins\Aqua\css\ligerui-form.css" />
  1171. <Content Include="scripts\ui\skins\Aqua\css\ligerui-grid.css" />
  1172. <Content Include="scripts\ui\skins\Aqua\css\ligerui-layout.css" />
  1173. <Content Include="scripts\ui\skins\Aqua\css\ligerui-menu.css" />
  1174. <Content Include="scripts\ui\skins\Aqua\css\ligerui-tab.css" />
  1175. <Content Include="scripts\ui\skins\Aqua\css\ligerui-tree.css" />
  1176. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-done.gif" />
  1177. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-error.gif" />
  1178. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-l-over.gif" />
  1179. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-l.gif" />
  1180. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-over.gif" />
  1181. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-question.gif" />
  1182. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-r-over.gif" />
  1183. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-r.gif" />
  1184. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn-warn.gif" />
  1185. <Content Include="scripts\ui\skins\Aqua\images\box\box-btn.gif" />
  1186. <Content Include="scripts\ui\skins\Aqua\images\box\box-close-over.gif" />
  1187. <Content Include="scripts\ui\skins\Aqua\images\box\box-close.gif" />
  1188. <Content Include="scripts\ui\skins\Aqua\images\box\box-lefttop.gif" />
  1189. <Content Include="scripts\ui\skins\Aqua\images\box\box-righttop.gif" />
  1190. <Content Include="scripts\ui\skins\Aqua\images\box\box-top.gif" />
  1191. <Content Include="scripts\ui\skins\Aqua\images\box\tabs-item-left-bg.gif" />
  1192. <Content Include="scripts\ui\skins\Aqua\images\common\loading.gif" />
  1193. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-bc.png" />
  1194. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-bl.png" />
  1195. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-br.png" />
  1196. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-button.gif" />
  1197. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-button.png" />
  1198. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-cl.png" />
  1199. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-close.png" />
  1200. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-cr.png" />
  1201. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-done.gif" />
  1202. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-error.gif" />
  1203. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-icons.png" />
  1204. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-question.gif" />
  1205. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-tc.png" />
  1206. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-title-icon.png" />
  1207. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-tl.png" />
  1208. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-tr.png" />
  1209. <Content Include="scripts\ui\skins\Aqua\images\dialog\dialog-warn.gif" />
  1210. <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-bc.png" />
  1211. <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-cl.png" />
  1212. <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-cr.png" />
  1213. <Content Include="scripts\ui\skins\Aqua\images\dialog\ie6\dialog-tc.png" />
  1214. <Content Include="scripts\ui\skins\Aqua\images\form\verify-corner.gif" />
  1215. <Content Include="scripts\ui\skins\Aqua\images\grid\box-lefttop.gif" />
  1216. <Content Include="scripts\ui\skins\Aqua\images\grid\box-righttop.gif" />
  1217. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-checkbox-checked.gif" />
  1218. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-checkbox.gif" />
  1219. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-detail-close.gif" />
  1220. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-detail-open.gif" />
  1221. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-line.gif" />
  1222. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-tree-close.gif" />
  1223. <Content Include="scripts\ui\skins\Aqua\images\grid\grid-tree-open.gif" />
  1224. <Content Include="scripts\ui\skins\Aqua\images\grid\header-bg-over.gif" />
  1225. <Content Include="scripts\ui\skins\Aqua\images\grid\header-bg.gif" />
  1226. <Content Include="scripts\ui\skins\Aqua\images\grid\header2-bg.jpg" />
  1227. <Content Include="scripts\ui\skins\Aqua\images\grid\loading.gif" />
  1228. <Content Include="scripts\ui\skins\Aqua\images\grid\popup-line.gif" />
  1229. <Content Include="scripts\ui\skins\Aqua\images\grid\popup-row-over.gif" />
  1230. <Content Include="scripts\ui\skins\Aqua\images\grid\popup-row-over.png" />
  1231. <Content Include="scripts\ui\skins\Aqua\images\icon\bar-button-over.gif" />
  1232. <Content Include="scripts\ui\skins\Aqua\images\icon\checkbox-checked.gif" />
  1233. <Content Include="scripts\ui\skins\Aqua\images\icon\checkbox.gif" />
  1234. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-close-over.gif" />
  1235. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-close.gif" />
  1236. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-close18X18.gif" />
  1237. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-done.gif" />
  1238. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-down.gif" />
  1239. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-drop.gif" />
  1240. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-edited.gif" />
  1241. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-first.gif" />
  1242. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-last.gif" />
  1243. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-line.gif" />
  1244. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-load.gif" />
  1245. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-load.png" />
  1246. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-milestone.gif" />
  1247. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-next.gif" />
  1248. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-prev.gif" />
  1249. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-remark15X15.gif" />
  1250. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-sort-asc.gif" />
  1251. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-sort-desc.gif" />
  1252. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-up.gif" />
  1253. <Content Include="scripts\ui\skins\Aqua\images\icon\icon-warn.gif" />
  1254. <Content Include="scripts\ui\skins\Aqua\images\icon\magnifier.png" />
  1255. <Content Include="scripts\ui\skins\Aqua\images\layout\accordion-content.gif" />
  1256. <Content Include="scripts\ui\skins\Aqua\images\layout\accordion-header-over.gif" />
  1257. <Content Include="scripts\ui\skins\Aqua\images\layout\accordion-header.gif" />
  1258. <Content Include="scripts\ui\skins\Aqua\images\layout\layout-header-over.gif" />
  1259. <Content Include="scripts\ui\skins\Aqua\images\layout\layout-header.gif" />
  1260. <Content Include="scripts\ui\skins\Aqua\images\layout\layout-sidebar-header.gif" />
  1261. <Content Include="scripts\ui\skins\Aqua\images\layout\mini-bottom.gif" />
  1262. <Content Include="scripts\ui\skins\Aqua\images\layout\mini-left.gif" />
  1263. <Content Include="scripts\ui\skins\Aqua\images\layout\mini-right.gif" />
  1264. <Content Include="scripts\ui\skins\Aqua\images\layout\mini-top.gif" />
  1265. <Content Include="scripts\ui\skins\Aqua\images\layout\panel-content.gif" />
  1266. <Content Include="scripts\ui\skins\Aqua\images\layout\panel-header-over.gif" />
  1267. <Content Include="scripts\ui\skins\Aqua\images\layout\panel-header.gif" />
  1268. <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-bg.gif" />
  1269. <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-bg.gif" />
  1270. <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-left-bg.gif" />
  1271. <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-over-bg.gif" />
  1272. <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-item-right-bg.gif" />
  1273. <Content Include="scripts\ui\skins\Aqua\images\layout\tabs-tools.gif" />
  1274. <Content Include="scripts\ui\skins\Aqua\images\layout\togglebar.gif" />
  1275. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-arrow.gif" />
  1276. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-down.gif" />
  1277. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-over-l.gif" />
  1278. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-over-m.gif" />
  1279. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-item-over-r.gif" />
  1280. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-line-x.gif" />
  1281. <Content Include="scripts\ui\skins\Aqua\images\menu\menu-line-y.gif" />
  1282. <Content Include="scripts\ui\skins\Aqua\images\panel\bar-bg.gif" />
  1283. <Content Include="scripts\ui\skins\Aqua\images\panel\header-bg.gif" />
  1284. <Content Include="scripts\ui\skins\Aqua\images\panel\header-bg.jpg" />
  1285. <Content Include="scripts\ui\skins\Aqua\images\panel\header2-bg.jpg" />
  1286. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-btn-l.gif" />
  1287. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-btn-r.gif" />
  1288. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-btn.gif" />
  1289. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-header.gif" />
  1290. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-menu-item-down.gif" />
  1291. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-menu.gif" />
  1292. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-menu.jpg" />
  1293. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-toolbar.gif" />
  1294. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-toolbar.jpg" />
  1295. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-tools-sprites.gif" />
  1296. <Content Include="scripts\ui\skins\Aqua\images\panel\panel-tools.gif" />
  1297. <Content Include="scripts\ui\skins\Aqua\images\tree\folder-open.gif" />
  1298. <Content Include="scripts\ui\skins\Aqua\images\tree\folder.gif" />
  1299. <Content Include="scripts\ui\skins\Aqua\images\tree\loading.gif" />
  1300. <Content Include="scripts\ui\skins\Aqua\images\tree\tree-leaf.gif" />
  1301. <Content Include="scripts\ui\skins\Aqua\images\tree\tree-level.gif" />
  1302. <Content Include="scripts\ui\skins\Aqua\images\tree\tree-noline.gif" />
  1303. <Content Include="scripts\ui\skins\Aqua\images\tree\tree-status-close.gif" />
  1304. <Content Include="scripts\ui\skins\Aqua\images\tree\tree-status-open.gif" />
  1305. <Content Include="scripts\ui\skins\Aqua\images\tree\tree-status.gif" />
  1306. <Content Include="scripts\ui\skins\Aqua\images\tree\tree.gif" />
  1307. <Content Include="scripts\ui\skins\Aqua\images\tree\tree.png" />
  1308. <Content Include="sysmanage\usermodify.aspx" />
  1309. <Content Include="sysmanage\userResetPasswod.aspx" />
  1310. <Content Include="telmanage\callblacklist.aspx" />
  1311. <Content Include="telmanage\callblacklisteditor.aspx" />
  1312. <Content Include="telmanage\callgraylist.aspx" />
  1313. <Content Include="telmanage\callgraylisteditor.aspx" />
  1314. <Content Include="telmanage\callinNew.aspx" />
  1315. <Content Include="telmanage\callinnewget.aspx" />
  1316. <Content Include="telmanage\callinopt.aspx" />
  1317. <Content Include="telmanage\callinreason.aspx" />
  1318. <Content Include="telmanage\callinreasonedit.aspx" />
  1319. <Content Include="telmanage\callinreasonls.aspx" />
  1320. <Content Include="telmanage\callinreasonzsjm.aspx" />
  1321. <Content Include="telmanage\callleavelist.aspx" />
  1322. <Content Include="telmanage\calloutopt.aspx" />
  1323. <Content Include="telmanage\callrecordlist.aspx" />
  1324. <Content Include="telmanage\callredlist.aspx" />
  1325. <Content Include="telmanage\callredlisteditor.aspx" />
  1326. <Content Include="telmanage\callvoicelist.aspx" />
  1327. <Content Include="telmanage\mobiledatalist.aspx" />
  1328. <Content Include="telmanage\mobiledatalistAddandEdit.aspx" />
  1329. <Content Include="telmanage\ReasonAddandEdit.aspx" />
  1330. <Content Include="telmanage\reasonmanage.aspx" />
  1331. <Content Include="telmanage\recordhighsearch.aspx" />
  1332. <Content Include="telmanage\seatmonitoring.aspx" />
  1333. <Content Include="telmanage\seatmonitoringlist.aspx" />
  1334. <Content Include="telmanage\seatmonitoringlistnew.aspx" />
  1335. <Content Include="telmanage\selectcallcustomer.aspx" />
  1336. <Content Include="telmanage\selectcallrecord.aspx" />
  1337. <Content Include="telmanage\selectcalluser.aspx" />
  1338. <Content Include="telmanage\selectcustomer.aspx" />
  1339. <Content Include="telmanage\selectdept.aspx" />
  1340. <Content Include="telmanage\selectdeptuser.aspx" />
  1341. <Content Include="telmanage\shiftchange.aspx" />
  1342. <Content Include="telmanage\voiceplay.aspx" />
  1343. <Content Include="telmanage\workcalendarset.aspx" />
  1344. <Content Include="telmanage\worktimesset.aspx" />
  1345. <Content Include="telmanage\worktimessetaddandedit.aspx" />
  1346. <Content Include="testform.aspx" />
  1347. <Content Include="ThirdParty\charts.html" />
  1348. <Content Include="ThirdParty\charts1.htm" />
  1349. <Content Include="ThirdParty\DJZZT.htm" />
  1350. <Content Include="ThirdParty\examples\3d-column-interactive\index.htm" />
  1351. <Content Include="ThirdParty\examples\3d-column-null-values\index.htm" />
  1352. <Content Include="ThirdParty\examples\3d-column-stacking-grouping\index.htm" />
  1353. <Content Include="ThirdParty\examples\3d-pie-donut\index.htm" />
  1354. <Content Include="ThirdParty\examples\3d-pie\index.htm" />
  1355. <Content Include="ThirdParty\examples\3d-scatter-draggable\index.htm" />
  1356. <Content Include="ThirdParty\examples\area-basic\index.htm" />
  1357. <Content Include="ThirdParty\examples\area-inverted\index.htm" />
  1358. <Content Include="ThirdParty\examples\area-missing\index.htm" />
  1359. <Content Include="ThirdParty\examples\area-negative\index.htm" />
  1360. <Content Include="ThirdParty\examples\area-stacked-percent\index.htm" />
  1361. <Content Include="ThirdParty\examples\area-stacked\index.htm" />
  1362. <Content Include="ThirdParty\examples\arearange-line\index.htm" />
  1363. <Content Include="ThirdParty\examples\arearange\index.htm" />
  1364. <Content Include="ThirdParty\examples\areaspline\index.htm" />
  1365. <Content Include="ThirdParty\examples\bar-basic\index.htm" />
  1366. <Content Include="ThirdParty\examples\bar-negative-stack\index.htm" />
  1367. <Content Include="ThirdParty\examples\bar-stacked\index.htm" />
  1368. <Content Include="ThirdParty\examples\box-plot\index.htm" />
  1369. <Content Include="ThirdParty\examples\bubble-3d\index.htm" />
  1370. <Content Include="ThirdParty\examples\bubble\index.htm" />
  1371. <Content Include="ThirdParty\examples\column-basic\index.htm" />
  1372. <Content Include="ThirdParty\examples\column-drilldown\index.htm" />
  1373. <Content Include="ThirdParty\examples\column-negative\index.htm" />
  1374. <Content Include="ThirdParty\examples\column-parsed\index.htm" />
  1375. <Content Include="ThirdParty\examples\column-placement\index.htm" />
  1376. <Content Include="ThirdParty\examples\column-rotated-labels\index.htm" />
  1377. <Content Include="ThirdParty\examples\column-stacked-and-grouped\index.htm" />
  1378. <Content Include="ThirdParty\examples\column-stacked-percent\index.htm" />
  1379. <Content Include="ThirdParty\examples\column-stacked\index.htm" />
  1380. <Content Include="ThirdParty\examples\columnrange\index.htm" />
  1381. <Content Include="ThirdParty\examples\combo-dual-axes\index.htm" />
  1382. <Content Include="ThirdParty\examples\combo-meteogram\index.htm" />
  1383. <Content Include="ThirdParty\examples\combo-multi-axes\index.htm" />
  1384. <Content Include="ThirdParty\examples\combo-regression\index.htm" />
  1385. <Content Include="ThirdParty\examples\combo\index.htm" />
  1386. <Content Include="ThirdParty\examples\dynamic-click-to-add\index.htm" />
  1387. <Content Include="ThirdParty\examples\dynamic-master-detail\index.htm" />
  1388. <Content Include="ThirdParty\examples\dynamic-update\index.htm" />
  1389. <Content Include="ThirdParty\examples\error-bar\index.htm" />
  1390. <Content Include="ThirdParty\examples\funnel\index.htm" />
  1391. <Content Include="ThirdParty\examples\gauge-clock\index.htm" />
  1392. <Content Include="ThirdParty\examples\gauge-dual\index.htm" />
  1393. <Content Include="ThirdParty\examples\gauge-solid\index.htm" />
  1394. <Content Include="ThirdParty\examples\gauge-speedometer\index.htm" />
  1395. <Content Include="ThirdParty\examples\gauge-vu-meter\index.htm" />
  1396. <Content Include="ThirdParty\examples\heatmap-canvas\index.htm" />
  1397. <Content Include="ThirdParty\examples\heatmap\index.htm" />
  1398. <Content Include="ThirdParty\examples\line-ajax\index.htm" />
  1399. <Content Include="ThirdParty\examples\line-basic\index.htm" />
  1400. <Content Include="ThirdParty\examples\line-labels\index.htm" />
  1401. <Content Include="ThirdParty\examples\line-log-axis\index.htm" />
  1402. <Content Include="ThirdParty\examples\line-time-series\index.htm" />
  1403. <Content Include="ThirdParty\examples\pie-basic\index.htm" />
  1404. <Content Include="ThirdParty\examples\pie-donut\index.htm" />
  1405. <Content Include="ThirdParty\examples\pie-drilldown\index.htm" />
  1406. <Content Include="ThirdParty\examples\pie-gradient\index.htm" />
  1407. <Content Include="ThirdParty\examples\pie-legend\index.htm" />
  1408. <Content Include="ThirdParty\examples\pie-monochrome\index.htm" />
  1409. <Content Include="ThirdParty\examples\pie-semi-circle\index.htm" />
  1410. <Content Include="ThirdParty\examples\polar-spider\index.htm" />
  1411. <Content Include="ThirdParty\examples\polar-wind-rose\index.htm" />
  1412. <Content Include="ThirdParty\examples\polar\index.htm" />
  1413. <Content Include="ThirdParty\examples\pyramid\index.htm" />
  1414. <Content Include="ThirdParty\examples\renderer\index.htm" />
  1415. <Content Include="ThirdParty\examples\scatter\index.htm" />
  1416. <Content Include="ThirdParty\examples\sparkline\index.htm" />
  1417. <Content Include="ThirdParty\examples\spline-inverted\index.htm" />
  1418. <Content Include="ThirdParty\examples\spline-irregular-time\index.htm" />
  1419. <Content Include="ThirdParty\examples\spline-plot-bands\index.htm" />
  1420. <Content Include="ThirdParty\examples\spline-symbols\index.htm" />
  1421. <Content Include="ThirdParty\examples\waterfall\index.htm" />
  1422. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\pom.xml" />
  1423. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\converter\SVGConverter.java" />
  1424. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\converter\SVGConverterException.java" />
  1425. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\AbstractPool.java" />
  1426. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\BlockingQueuePool.java" />
  1427. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\ObjectFactory.java" />
  1428. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\ObjectPool.java" />
  1429. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\PoolException.java" />
  1430. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\pool\ServerObjectFactory.java" />
  1431. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\server\Server.java" />
  1432. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\server\ServerState.java" />
  1433. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\server\TimeOut.java" />
  1434. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\util\MimeType.java" />
  1435. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\java\com\highcharts\export\util\TempDir.java" />
  1436. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\data.js" />
  1437. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts-3d.js" />
  1438. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts-convert.js" />
  1439. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts-more.js" />
  1440. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\highcharts.js" />
  1441. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\jquery.1.9.1.min.js" />
  1442. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\phantomjs\map.js" />
  1443. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\spring-convert.xml" />
  1444. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\pom.xml" />
  1445. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\java\com\highcharts\export\controller\ExportController.java" />
  1446. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\java\com\highcharts\export\filter\CorsFilter.java" />
  1447. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\META-INF\context.xml" />
  1448. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\css\demo.css" />
  1449. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\Highcharts-icon-160px.png" />
  1450. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\codemirror.css" />
  1451. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\codemirror.js" />
  1452. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\javascript\index.html" />
  1453. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\javascript\javascript.js" />
  1454. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\javascript\typescript.html" />
  1455. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\xml\index.html" />
  1456. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\mode\xml\xml.js" />
  1457. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\closetag.js" />
  1458. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\dialog.css" />
  1459. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\dialog.js" />
  1460. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\foldcode.js" />
  1461. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\formatting.js" />
  1462. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\javascript-hint.js" />
  1463. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\loadmode.js" />
  1464. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\match-highlighter.js" />
  1465. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\multiplex.js" />
  1466. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\overlay.js" />
  1467. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\pig-hint.js" />
  1468. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\runmode-standalone.js" />
  1469. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\runmode.js" />
  1470. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\search.js" />
  1471. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\searchcursor.js" />
  1472. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\simple-hint.css" />
  1473. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\simple-hint.js" />
  1474. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\codemirror\util\xml-hint.js" />
  1475. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\resources\lib\jquery-1.11.0.min.js" />
  1476. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\jspf\callback.js" />
  1477. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\jspf\config.js" />
  1478. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\jspf\lexl.svg" />
  1479. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\spring\export-servlet.xml" />
  1480. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\spring\spring-context.xml" />
  1481. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\web.xml" />
  1482. <Content Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\jsp\org\apache\jsp\WEB_002dINF\pages\error_jsp.java" />
  1483. <Content Include="ThirdParty\exporting-server\java\highcharts-export\pom.xml" />
  1484. <Content Include="ThirdParty\exporting-server\phantomjs\data.js" />
  1485. <Content Include="ThirdParty\exporting-server\phantomjs\highcharts-3d.js" />
  1486. <Content Include="ThirdParty\exporting-server\phantomjs\highcharts-convert.js" />
  1487. <Content Include="ThirdParty\exporting-server\phantomjs\highcharts-more.js" />
  1488. <Content Include="ThirdParty\exporting-server\phantomjs\highcharts.js" />
  1489. <Content Include="ThirdParty\exporting-server\phantomjs\jquery.1.9.1.min.js" />
  1490. <Content Include="ThirdParty\exporting-server\phantomjs\map.js" />
  1491. <Content Include="ThirdParty\gfx\vml-radial-gradient.png" />
  1492. <Content Include="ThirdParty\HTMLPage.htm" />
  1493. <Content Include="ThirdParty\index.htm" />
  1494. <Content Include="ThirdParty\js\adapters\standalone-framework.js" />
  1495. <Content Include="ThirdParty\js\adapters\standalone-framework.src.js" />
  1496. <Content Include="ThirdParty\js\highcharts-3d.js" />
  1497. <Content Include="ThirdParty\js\highcharts-3d.src.js" />
  1498. <Content Include="ThirdParty\js\highcharts-all.js" />
  1499. <Content Include="ThirdParty\js\highcharts-more.js" />
  1500. <Content Include="ThirdParty\js\highcharts-more.src.js" />
  1501. <Content Include="ThirdParty\js\highcharts.js" />
  1502. <Content Include="ThirdParty\js\highcharts.src.js" />
  1503. <Content Include="ThirdParty\js\jquery-1.8.3.min.js" />
  1504. <Content Include="ThirdParty\js\modules\canvas-tools.js" />
  1505. <Content Include="ThirdParty\js\modules\canvas-tools.src.js" />
  1506. <Content Include="ThirdParty\js\modules\data.js" />
  1507. <Content Include="ThirdParty\js\modules\data.src.js" />
  1508. <Content Include="ThirdParty\js\modules\drilldown.js" />
  1509. <Content Include="ThirdParty\js\modules\drilldown.src.js" />
  1510. <Content Include="ThirdParty\js\modules\exporting.js" />
  1511. <Content Include="ThirdParty\js\modules\exporting.src.js" />
  1512. <Content Include="ThirdParty\js\modules\funnel.js" />
  1513. <Content Include="ThirdParty\js\modules\funnel.src.js" />
  1514. <Content Include="ThirdParty\js\modules\heatmap.js" />
  1515. <Content Include="ThirdParty\js\modules\heatmap.src.js" />
  1516. <Content Include="ThirdParty\js\modules\no-data-to-display.js" />
  1517. <Content Include="ThirdParty\js\modules\no-data-to-display.src.js" />
  1518. <Content Include="ThirdParty\js\modules\solid-gauge.js" />
  1519. <Content Include="ThirdParty\js\modules\solid-gauge.src.js" />
  1520. <Content Include="ThirdParty\js\themes\dark-blue.js" />
  1521. <Content Include="ThirdParty\js\themes\dark-green.js" />
  1522. <Content Include="ThirdParty\js\themes\dark-unica.js" />
  1523. <Content Include="ThirdParty\js\themes\gray.js" />
  1524. <Content Include="ThirdParty\js\themes\grid-light.js" />
  1525. <Content Include="ThirdParty\js\themes\grid.js" />
  1526. <Content Include="ThirdParty\js\themes\sand-signika.js" />
  1527. <Content Include="ThirdParty\js\themes\skies.js" />
  1528. <Content Include="Web References\WebReferenceFax\FaxService.disco" />
  1529. <Content Include="Web.config">
  1530. <SubType>Designer</SubType>
  1531. </Content>
  1532. <None Include="Web.Debug.config">
  1533. <DependentUpon>Web.config</DependentUpon>
  1534. </None>
  1535. <None Include="Web.Release.config">
  1536. <DependentUpon>Web.config</DependentUpon>
  1537. </None>
  1538. <Content Include="workordermanage\workordernew\selectusers.aspx" />
  1539. <Content Include="workordermanage\workordernew\workorderadd.aspx" />
  1540. <Content Include="workordermanage\workordernew\WorkOrderCLDeal.aspx" />
  1541. <Content Include="workordermanage\workordernew\WorkOrderInfo.aspx" />
  1542. <Content Include="workordermanage\workordernew\WorkOrderMyList.aspx" />
  1543. <Content Include="workordermanage\workordernew\WorkOrderPDDeal.aspx" />
  1544. <Content Include="workordermanage\workordernew\WorkOrderSearch.aspx" />
  1545. <Content Include="workordermanage\workordernew\WorkOrderUGDeal.aspx" />
  1546. <Content Include="workordermanage\workordernew\WorkOrderUrgeList.aspx" />
  1547. <Content Include="workordermanage\workordernew\WorkOrderWCLList.aspx" />
  1548. <Content Include="workordermanage\workordernew\WorkOrderWPDList.aspx" />
  1549. <Content Include="workordermanage\workorderset\alamangeStateEdit.aspx" />
  1550. <Content Include="workordermanage\workorderset\alarmmanage.aspx" />
  1551. <Content Include="workordermanage\workorderset\alarmmangeTypeEdit.aspx" />
  1552. <Content Include="workordermanage\workorderset\orderstatemanage.aspx" />
  1553. <Content Include="workordermanage\workorderset\ordertypemanage.aspx" />
  1554. <Content Include="workordermanage\workorderset\ordertypemanageedit.aspx" />
  1555. <Content Include="workordermanage\workorderset\workbuttonmanage.aspx" />
  1556. <Content Include="workordermanage\workorderset\workbuttonmanageEdit.aspx" />
  1557. <Content Include="workordermanage\workorderset\workChuLiInfomarger.aspx" />
  1558. <Content Include="workordermanage\workorderset\workflowEdit.aspx" />
  1559. <Content Include="workordermanage\workorderset\workflowmanage.aspx" />
  1560. <Content Include="workordermanage\workorderset\workorderDCLList.aspx" />
  1561. <Content Include="workordermanage\workorderset\workOrderDGDList.aspx" />
  1562. <Content Include="workordermanage\workorderset\workOrderGDZHCXList.aspx" />
  1563. <Content Include="workordermanage\workorderset\WorkOrderInfo.aspx" />
  1564. <Content Include="workordermanage\workorderset\WorkorderStateEdit.aspx" />
  1565. <Content Include="workordermanage\workorderset\workOrderYCLList.aspx" />
  1566. <Content Include="workordermanage\workorderset\workOrderYWJList.aspx" />
  1567. <Content Include="workordermanage\workorder\orderassign.aspx" />
  1568. <Content Include="workordermanage\workorder\orderchuli.aspx" />
  1569. <Content Include="workordermanage\workorder\orderhuifu.aspx" />
  1570. <Content Include="workordermanage\workorder\orderjieshu.aspx" />
  1571. <Content Include="workordermanage\workorder\orderreply.aspx" />
  1572. <Content Include="workordermanage\workorder\selectfinishuser.aspx" />
  1573. <Content Include="workordermanage\workorder\shangchuan.aspx" />
  1574. <Content Include="workordermanage\workorder\shangchuanAdd.aspx" />
  1575. <Content Include="workordermanage\workorder\woekorderDCLedit.aspx" />
  1576. <Content Include="workordermanage\workorder\workorderchuliInfo.aspx" />
  1577. <Content Include="workordermanage\workorder\workorderDCLList.aspx" />
  1578. <Content Include="workordermanage\workorder\workorderdetail.aspx" />
  1579. <Content Include="workordermanage\workorder\workorderDGDList.aspx" />
  1580. <Content Include="workordermanage\workorder\workorderDHFList.aspx" />
  1581. <Content Include="workordermanage\workorder\workorderDJDList.aspx" />
  1582. <Content Include="workordermanage\workorder\workorderDJSList.aspx" />
  1583. <Content Include="workordermanage\workorder\workorderDZPList.aspx" />
  1584. <Content Include="workordermanage\workorder\workorderGCSCountsList.aspx" />
  1585. <Content Include="workordermanage\workorder\workorderGDZHCXList.aspx" />
  1586. <Content Include="workordermanage\workorder\workorderInfo.aspx" />
  1587. <Content Include="workordermanage\workorder\workordernew.aspx" />
  1588. <Content Include="workordermanage\workorder\workorderSearchGaoJi.aspx" />
  1589. <Content Include="workordermanage\workorder\workordershow.aspx" />
  1590. <Content Include="workordermanage\workorder\workordervipshow.aspx" />
  1591. <Content Include="workordermanage\workorder\workorderYCLList.aspx" />
  1592. <Content Include="workordermanage\workorder\workorderYWJList.aspx" />
  1593. <Content Include="workordermanage\workorder\workorderYXGCSCountsList.aspx" />
  1594. <Content Include="workordermanage\_controls\ctl_workorderhistrory.ascx" />
  1595. <Content Include="workordermanage\_controls\ctl_workordernote.ascx" />
  1596. </ItemGroup>
  1597. <ItemGroup>
  1598. <Compile Include="askmanage\ajax\pagerinfo.ashx.cs">
  1599. <DependentUpon>pagerinfo.ashx</DependentUpon>
  1600. </Compile>
  1601. <Compile Include="askmanage\ajax\pageritems.ashx.cs">
  1602. <DependentUpon>pageritems.ashx</DependentUpon>
  1603. </Compile>
  1604. <Compile Include="askmanage\ajax\pagerview.aspx.cs">
  1605. <DependentUpon>pagerview.aspx</DependentUpon>
  1606. <SubType>ASPXCodeBehind</SubType>
  1607. </Compile>
  1608. <Compile Include="askmanage\ajax\pagerview.aspx.designer.cs">
  1609. <DependentUpon>pagerview.aspx</DependentUpon>
  1610. </Compile>
  1611. <Compile Include="askmanage\ajax\question.ashx.cs">
  1612. <DependentUpon>question.ashx</DependentUpon>
  1613. </Compile>
  1614. <Compile Include="askmanage\ajax\questioncategory.ashx.cs">
  1615. <DependentUpon>questioncategory.ashx</DependentUpon>
  1616. </Compile>
  1617. <Compile Include="askmanage\ajax\questionitems.ashx.cs">
  1618. <DependentUpon>questionitems.ashx</DependentUpon>
  1619. </Compile>
  1620. <Compile Include="askmanage\pageredit.aspx.cs">
  1621. <DependentUpon>pageredit.aspx</DependentUpon>
  1622. <SubType>ASPXCodeBehind</SubType>
  1623. </Compile>
  1624. <Compile Include="askmanage\pageredit.aspx.designer.cs">
  1625. <DependentUpon>pageredit.aspx</DependentUpon>
  1626. </Compile>
  1627. <Compile Include="askmanage\pagermanage.aspx.cs">
  1628. <DependentUpon>pagermanage.aspx</DependentUpon>
  1629. <SubType>ASPXCodeBehind</SubType>
  1630. </Compile>
  1631. <Compile Include="askmanage\pagermanage.aspx.designer.cs">
  1632. <DependentUpon>pagermanage.aspx</DependentUpon>
  1633. </Compile>
  1634. <Compile Include="askmanage\pagerview.aspx.cs">
  1635. <DependentUpon>pagerview.aspx</DependentUpon>
  1636. <SubType>ASPXCodeBehind</SubType>
  1637. </Compile>
  1638. <Compile Include="askmanage\pagerview.aspx.designer.cs">
  1639. <DependentUpon>pagerview.aspx</DependentUpon>
  1640. </Compile>
  1641. <Compile Include="askmanage\questioncategoryedit.aspx.cs">
  1642. <DependentUpon>questioncategoryedit.aspx</DependentUpon>
  1643. <SubType>ASPXCodeBehind</SubType>
  1644. </Compile>
  1645. <Compile Include="askmanage\questioncategoryedit.aspx.designer.cs">
  1646. <DependentUpon>questioncategoryedit.aspx</DependentUpon>
  1647. </Compile>
  1648. <Compile Include="askmanage\questionedit.aspx.cs">
  1649. <DependentUpon>questionedit.aspx</DependentUpon>
  1650. <SubType>ASPXCodeBehind</SubType>
  1651. </Compile>
  1652. <Compile Include="askmanage\questionedit.aspx.designer.cs">
  1653. <DependentUpon>questionedit.aspx</DependentUpon>
  1654. </Compile>
  1655. <Compile Include="askmanage\questionmanage.aspx.cs">
  1656. <DependentUpon>questionmanage.aspx</DependentUpon>
  1657. <SubType>ASPXCodeBehind</SubType>
  1658. </Compile>
  1659. <Compile Include="askmanage\questionmanage.aspx.designer.cs">
  1660. <DependentUpon>questionmanage.aspx</DependentUpon>
  1661. </Compile>
  1662. <Compile Include="askmanage\_controls\ctl_pagerview.ascx.cs">
  1663. <DependentUpon>ctl_pagerview.ascx</DependentUpon>
  1664. <SubType>ASPXCodeBehind</SubType>
  1665. </Compile>
  1666. <Compile Include="askmanage\_controls\ctl_pagerview.ascx.designer.cs">
  1667. <DependentUpon>ctl_pagerview.ascx</DependentUpon>
  1668. </Compile>
  1669. <Compile Include="BaseCode\BasePage.cs">
  1670. <SubType>ASPXCodeBehind</SubType>
  1671. </Compile>
  1672. <Compile Include="calloutmanage\ajax\calloutopt.ashx.cs">
  1673. <DependentUpon>calloutopt.ashx</DependentUpon>
  1674. </Compile>
  1675. <Compile Include="calloutmanage\ajax\callplan.ashx.cs">
  1676. <DependentUpon>callplan.ashx</DependentUpon>
  1677. </Compile>
  1678. <Compile Include="calloutmanage\ajax\callplanfpset.ashx.cs">
  1679. <DependentUpon>callplanfpset.ashx</DependentUpon>
  1680. </Compile>
  1681. <Compile Include="calloutmanage\ajax\callplanintophone.ashx.cs">
  1682. <DependentUpon>callplanintophone.ashx</DependentUpon>
  1683. </Compile>
  1684. <Compile Include="calloutmanage\ajax\callplanresultdata.aspx.cs">
  1685. <DependentUpon>callplanresultdata.aspx</DependentUpon>
  1686. <SubType>ASPXCodeBehind</SubType>
  1687. </Compile>
  1688. <Compile Include="calloutmanage\ajax\callplanresultdata.aspx.designer.cs">
  1689. <DependentUpon>callplanresultdata.aspx</DependentUpon>
  1690. </Compile>
  1691. <Compile Include="calloutmanage\ajax\callplanresultdatahtml.ashx.cs">
  1692. <DependentUpon>callplanresultdatahtml.ashx</DependentUpon>
  1693. </Compile>
  1694. <Compile Include="calloutmanage\ajax\callplantelnum.ashx.cs">
  1695. <DependentUpon>callplantelnum.ashx</DependentUpon>
  1696. </Compile>
  1697. <Compile Include="calloutmanage\ajax\callplanwebset.ashx.cs">
  1698. <DependentUpon>callplanwebset.ashx</DependentUpon>
  1699. </Compile>
  1700. <Compile Include="calloutmanage\calloutopt.aspx.cs">
  1701. <DependentUpon>calloutopt.aspx</DependentUpon>
  1702. <SubType>ASPXCodeBehind</SubType>
  1703. </Compile>
  1704. <Compile Include="calloutmanage\calloutopt.aspx.designer.cs">
  1705. <DependentUpon>calloutopt.aspx</DependentUpon>
  1706. </Compile>
  1707. <Compile Include="calloutmanage\calloutoptrecordlist.aspx.cs">
  1708. <DependentUpon>calloutoptrecordlist.aspx</DependentUpon>
  1709. <SubType>ASPXCodeBehind</SubType>
  1710. </Compile>
  1711. <Compile Include="calloutmanage\calloutoptrecordlist.aspx.designer.cs">
  1712. <DependentUpon>calloutoptrecordlist.aspx</DependentUpon>
  1713. </Compile>
  1714. <Compile Include="calloutmanage\calloutoptshow.aspx.cs">
  1715. <DependentUpon>calloutoptshow.aspx</DependentUpon>
  1716. <SubType>ASPXCodeBehind</SubType>
  1717. </Compile>
  1718. <Compile Include="calloutmanage\calloutoptshow.aspx.designer.cs">
  1719. <DependentUpon>calloutoptshow.aspx</DependentUpon>
  1720. </Compile>
  1721. <Compile Include="calloutmanage\callplanedit.aspx.cs">
  1722. <DependentUpon>callplanedit.aspx</DependentUpon>
  1723. <SubType>ASPXCodeBehind</SubType>
  1724. </Compile>
  1725. <Compile Include="calloutmanage\callplanedit.aspx.designer.cs">
  1726. <DependentUpon>callplanedit.aspx</DependentUpon>
  1727. </Compile>
  1728. <Compile Include="calloutmanage\callplanfpset.aspx.cs">
  1729. <DependentUpon>callplanfpset.aspx</DependentUpon>
  1730. <SubType>ASPXCodeBehind</SubType>
  1731. </Compile>
  1732. <Compile Include="calloutmanage\callplanfpset.aspx.designer.cs">
  1733. <DependentUpon>callplanfpset.aspx</DependentUpon>
  1734. </Compile>
  1735. <Compile Include="calloutmanage\callplanintophone.aspx.cs">
  1736. <DependentUpon>callplanintophone.aspx</DependentUpon>
  1737. <SubType>ASPXCodeBehind</SubType>
  1738. </Compile>
  1739. <Compile Include="calloutmanage\callplanintophone.aspx.designer.cs">
  1740. <DependentUpon>callplanintophone.aspx</DependentUpon>
  1741. </Compile>
  1742. <Compile Include="calloutmanage\callplanmanage.aspx.cs">
  1743. <DependentUpon>callplanmanage.aspx</DependentUpon>
  1744. <SubType>ASPXCodeBehind</SubType>
  1745. </Compile>
  1746. <Compile Include="calloutmanage\callplanmanage.aspx.designer.cs">
  1747. <DependentUpon>callplanmanage.aspx</DependentUpon>
  1748. </Compile>
  1749. <Compile Include="calloutmanage\callplanpageitems.aspx.cs">
  1750. <DependentUpon>callplanpageitems.aspx</DependentUpon>
  1751. <SubType>ASPXCodeBehind</SubType>
  1752. </Compile>
  1753. <Compile Include="calloutmanage\callplanpageitems.aspx.designer.cs">
  1754. <DependentUpon>callplanpageitems.aspx</DependentUpon>
  1755. </Compile>
  1756. <Compile Include="calloutmanage\callplantaskmylist.aspx.cs">
  1757. <DependentUpon>callplantaskmylist.aspx</DependentUpon>
  1758. <SubType>ASPXCodeBehind</SubType>
  1759. </Compile>
  1760. <Compile Include="calloutmanage\callplantaskmylist.aspx.designer.cs">
  1761. <DependentUpon>callplantaskmylist.aspx</DependentUpon>
  1762. </Compile>
  1763. <Compile Include="calloutmanage\callplantaskresult.aspx.cs">
  1764. <DependentUpon>callplantaskresult.aspx</DependentUpon>
  1765. <SubType>ASPXCodeBehind</SubType>
  1766. </Compile>
  1767. <Compile Include="calloutmanage\callplantaskresult.aspx.designer.cs">
  1768. <DependentUpon>callplantaskresult.aspx</DependentUpon>
  1769. </Compile>
  1770. <Compile Include="calloutmanage\callplantaskresultdata.aspx.cs">
  1771. <DependentUpon>callplantaskresultdata.aspx</DependentUpon>
  1772. <SubType>ASPXCodeBehind</SubType>
  1773. </Compile>
  1774. <Compile Include="calloutmanage\callplantaskresultdata.aspx.designer.cs">
  1775. <DependentUpon>callplantaskresultdata.aspx</DependentUpon>
  1776. </Compile>
  1777. <Compile Include="calloutmanage\callplantaskresultdataexcel.aspx.cs">
  1778. <DependentUpon>callplantaskresultdataexcel.aspx</DependentUpon>
  1779. <SubType>ASPXCodeBehind</SubType>
  1780. </Compile>
  1781. <Compile Include="calloutmanage\callplantaskresultdataexcel.aspx.designer.cs">
  1782. <DependentUpon>callplantaskresultdataexcel.aspx</DependentUpon>
  1783. </Compile>
  1784. <Compile Include="calloutmanage\callplantaskresultsearch.aspx.cs">
  1785. <DependentUpon>callplantaskresultsearch.aspx</DependentUpon>
  1786. <SubType>ASPXCodeBehind</SubType>
  1787. </Compile>
  1788. <Compile Include="calloutmanage\callplantaskresultsearch.aspx.designer.cs">
  1789. <DependentUpon>callplantaskresultsearch.aspx</DependentUpon>
  1790. </Compile>
  1791. <Compile Include="calloutmanage\callplanwebset.aspx.cs">
  1792. <DependentUpon>callplanwebset.aspx</DependentUpon>
  1793. <SubType>ASPXCodeBehind</SubType>
  1794. </Compile>
  1795. <Compile Include="calloutmanage\callplanwebset.aspx.designer.cs">
  1796. <DependentUpon>callplanwebset.aspx</DependentUpon>
  1797. </Compile>
  1798. <Compile Include="calloutmanage\_controls\callplanresultdata.ascx.cs">
  1799. <DependentUpon>callplanresultdata.ascx</DependentUpon>
  1800. <SubType>ASPXCodeBehind</SubType>
  1801. </Compile>
  1802. <Compile Include="calloutmanage\_controls\callplanresultdata.ascx.designer.cs">
  1803. <DependentUpon>callplanresultdata.ascx</DependentUpon>
  1804. </Compile>
  1805. <Compile Include="customermanage\ajax\historyserviceinfo.ashx.cs">
  1806. <DependentUpon>historyserviceinfo.ashx</DependentUpon>
  1807. </Compile>
  1808. <Compile Include="customermanage\customermodify.aspx.cs">
  1809. <DependentUpon>customermodify.aspx</DependentUpon>
  1810. <SubType>ASPXCodeBehind</SubType>
  1811. </Compile>
  1812. <Compile Include="customermanage\customermodify.aspx.designer.cs">
  1813. <DependentUpon>customermodify.aspx</DependentUpon>
  1814. </Compile>
  1815. <Compile Include="customermanage\historyserviceinfo.aspx.cs">
  1816. <DependentUpon>historyserviceinfo.aspx</DependentUpon>
  1817. <SubType>ASPXCodeBehind</SubType>
  1818. </Compile>
  1819. <Compile Include="customermanage\historyserviceinfo.aspx.designer.cs">
  1820. <DependentUpon>historyserviceinfo.aspx</DependentUpon>
  1821. </Compile>
  1822. <Compile Include="expendmanage\ajax\expandlist.ashx.cs">
  1823. <DependentUpon>expandlist.ashx</DependentUpon>
  1824. </Compile>
  1825. <Compile Include="expendmanage\expandAddandEdit.aspx.cs">
  1826. <DependentUpon>expandAddandEdit.aspx</DependentUpon>
  1827. <SubType>ASPXCodeBehind</SubType>
  1828. </Compile>
  1829. <Compile Include="expendmanage\expandAddandEdit.aspx.designer.cs">
  1830. <DependentUpon>expandAddandEdit.aspx</DependentUpon>
  1831. </Compile>
  1832. <Compile Include="expendmanage\expandlist.aspx.cs">
  1833. <DependentUpon>expandlist.aspx</DependentUpon>
  1834. <SubType>ASPXCodeBehind</SubType>
  1835. </Compile>
  1836. <Compile Include="expendmanage\expandlist.aspx.designer.cs">
  1837. <DependentUpon>expandlist.aspx</DependentUpon>
  1838. </Compile>
  1839. <Compile Include="faxmanage\ajax\faxSendAjax.ashx.cs">
  1840. <DependentUpon>faxSendAjax.ashx</DependentUpon>
  1841. </Compile>
  1842. <Compile Include="faxmanage\faxcustomer.aspx.cs">
  1843. <DependentUpon>faxcustomer.aspx</DependentUpon>
  1844. <SubType>ASPXCodeBehind</SubType>
  1845. </Compile>
  1846. <Compile Include="faxmanage\faxcustomer.aspx.designer.cs">
  1847. <DependentUpon>faxcustomer.aspx</DependentUpon>
  1848. </Compile>
  1849. <Compile Include="faxmanage\faxdown.aspx.cs">
  1850. <DependentUpon>faxdown.aspx</DependentUpon>
  1851. <SubType>ASPXCodeBehind</SubType>
  1852. </Compile>
  1853. <Compile Include="faxmanage\faxdown.aspx.designer.cs">
  1854. <DependentUpon>faxdown.aspx</DependentUpon>
  1855. </Compile>
  1856. <Compile Include="faxmanage\FaxPublicList.aspx.cs">
  1857. <DependentUpon>FaxPublicList.aspx</DependentUpon>
  1858. <SubType>ASPXCodeBehind</SubType>
  1859. </Compile>
  1860. <Compile Include="faxmanage\FaxPublicList.aspx.designer.cs">
  1861. <DependentUpon>FaxPublicList.aspx</DependentUpon>
  1862. </Compile>
  1863. <Compile Include="faxmanage\FaxReceive.aspx.cs">
  1864. <DependentUpon>FaxReceive.aspx</DependentUpon>
  1865. <SubType>ASPXCodeBehind</SubType>
  1866. </Compile>
  1867. <Compile Include="faxmanage\FaxReceive.aspx.designer.cs">
  1868. <DependentUpon>FaxReceive.aspx</DependentUpon>
  1869. </Compile>
  1870. <Compile Include="faxmanage\faxreceiveshow.aspx.cs">
  1871. <DependentUpon>faxreceiveshow.aspx</DependentUpon>
  1872. <SubType>ASPXCodeBehind</SubType>
  1873. </Compile>
  1874. <Compile Include="faxmanage\faxreceiveshow.aspx.designer.cs">
  1875. <DependentUpon>faxreceiveshow.aspx</DependentUpon>
  1876. </Compile>
  1877. <Compile Include="faxmanage\FaxSend.aspx.cs">
  1878. <DependentUpon>FaxSend.aspx</DependentUpon>
  1879. <SubType>ASPXCodeBehind</SubType>
  1880. </Compile>
  1881. <Compile Include="faxmanage\FaxSend.aspx.designer.cs">
  1882. <DependentUpon>FaxSend.aspx</DependentUpon>
  1883. </Compile>
  1884. <Compile Include="faxmanage\FaxSendAlready.aspx.cs">
  1885. <DependentUpon>FaxSendAlready.aspx</DependentUpon>
  1886. <SubType>ASPXCodeBehind</SubType>
  1887. </Compile>
  1888. <Compile Include="faxmanage\FaxSendAlready.aspx.designer.cs">
  1889. <DependentUpon>FaxSendAlready.aspx</DependentUpon>
  1890. </Compile>
  1891. <Compile Include="faxmanage\faxsendshow.aspx.cs">
  1892. <DependentUpon>faxsendshow.aspx</DependentUpon>
  1893. <SubType>ASPXCodeBehind</SubType>
  1894. </Compile>
  1895. <Compile Include="faxmanage\faxsendshow.aspx.designer.cs">
  1896. <DependentUpon>faxsendshow.aspx</DependentUpon>
  1897. </Compile>
  1898. <Compile Include="faxmanage\FaxSendTask.aspx.cs">
  1899. <DependentUpon>FaxSendTask.aspx</DependentUpon>
  1900. <SubType>ASPXCodeBehind</SubType>
  1901. </Compile>
  1902. <Compile Include="faxmanage\FaxSendTask.aspx.designer.cs">
  1903. <DependentUpon>FaxSendTask.aspx</DependentUpon>
  1904. </Compile>
  1905. <Compile Include="faxmanage\faxtoimage.aspx.cs">
  1906. <DependentUpon>faxtoimage.aspx</DependentUpon>
  1907. <SubType>ASPXCodeBehind</SubType>
  1908. </Compile>
  1909. <Compile Include="faxmanage\faxtoimage.aspx.designer.cs">
  1910. <DependentUpon>faxtoimage.aspx</DependentUpon>
  1911. </Compile>
  1912. <Compile Include="firstlogin.aspx.cs">
  1913. <DependentUpon>firstlogin.aspx</DependentUpon>
  1914. <SubType>ASPXCodeBehind</SubType>
  1915. </Compile>
  1916. <Compile Include="firstlogin.aspx.designer.cs">
  1917. <DependentUpon>firstlogin.aspx</DependentUpon>
  1918. </Compile>
  1919. <Compile Include="formmanage\ajax\entitylist.ashx.cs">
  1920. <DependentUpon>entitylist.ashx</DependentUpon>
  1921. </Compile>
  1922. <Compile Include="formmanage\ajax\formlist.ashx.cs">
  1923. <DependentUpon>formlist.ashx</DependentUpon>
  1924. </Compile>
  1925. <Compile Include="formmanage\attributeedit.aspx.cs">
  1926. <DependentUpon>attributeedit.aspx</DependentUpon>
  1927. <SubType>ASPXCodeBehind</SubType>
  1928. </Compile>
  1929. <Compile Include="formmanage\attributeedit.aspx.designer.cs">
  1930. <DependentUpon>attributeedit.aspx</DependentUpon>
  1931. </Compile>
  1932. <Compile Include="formmanage\entityedit.aspx.cs">
  1933. <DependentUpon>entityedit.aspx</DependentUpon>
  1934. <SubType>ASPXCodeBehind</SubType>
  1935. </Compile>
  1936. <Compile Include="formmanage\entityedit.aspx.designer.cs">
  1937. <DependentUpon>entityedit.aspx</DependentUpon>
  1938. </Compile>
  1939. <Compile Include="formmanage\entitylist.aspx.cs">
  1940. <DependentUpon>entitylist.aspx</DependentUpon>
  1941. <SubType>ASPXCodeBehind</SubType>
  1942. </Compile>
  1943. <Compile Include="formmanage\entitylist.aspx.designer.cs">
  1944. <DependentUpon>entitylist.aspx</DependentUpon>
  1945. </Compile>
  1946. <Compile Include="formmanage\formlist.aspx.cs">
  1947. <DependentUpon>formlist.aspx</DependentUpon>
  1948. <SubType>ASPXCodeBehind</SubType>
  1949. </Compile>
  1950. <Compile Include="formmanage\formlist.aspx.designer.cs">
  1951. <DependentUpon>formlist.aspx</DependentUpon>
  1952. </Compile>
  1953. <Compile Include="formmanage\formset.aspx.cs">
  1954. <DependentUpon>formset.aspx</DependentUpon>
  1955. <SubType>ASPXCodeBehind</SubType>
  1956. </Compile>
  1957. <Compile Include="formmanage\formset.aspx.designer.cs">
  1958. <DependentUpon>formset.aspx</DependentUpon>
  1959. </Compile>
  1960. <Compile Include="iframeocx.aspx.cs">
  1961. <DependentUpon>iframeocx.aspx</DependentUpon>
  1962. <SubType>ASPXCodeBehind</SubType>
  1963. </Compile>
  1964. <Compile Include="iframeocx.aspx.designer.cs">
  1965. <DependentUpon>iframeocx.aspx</DependentUpon>
  1966. </Compile>
  1967. <Compile Include="noticemanage\ajax\noticeinfoview.ashx.cs">
  1968. <DependentUpon>noticeinfoview.ashx</DependentUpon>
  1969. </Compile>
  1970. <Compile Include="noticemanage\ajax\noticemanagelist.ashx.cs">
  1971. <DependentUpon>noticemanagelist.ashx</DependentUpon>
  1972. </Compile>
  1973. <Compile Include="noticemanage\noticeinfoedit.aspx.cs">
  1974. <DependentUpon>noticeinfoedit.aspx</DependentUpon>
  1975. <SubType>ASPXCodeBehind</SubType>
  1976. </Compile>
  1977. <Compile Include="noticemanage\noticeinfoedit.aspx.designer.cs">
  1978. <DependentUpon>noticeinfoedit.aspx</DependentUpon>
  1979. </Compile>
  1980. <Compile Include="noticemanage\noticeinfoview.aspx.cs">
  1981. <DependentUpon>noticeinfoview.aspx</DependentUpon>
  1982. <SubType>ASPXCodeBehind</SubType>
  1983. </Compile>
  1984. <Compile Include="noticemanage\noticeinfoview.aspx.designer.cs">
  1985. <DependentUpon>noticeinfoview.aspx</DependentUpon>
  1986. </Compile>
  1987. <Compile Include="noticemanage\noticelistview.aspx.cs">
  1988. <DependentUpon>noticelistview.aspx</DependentUpon>
  1989. <SubType>ASPXCodeBehind</SubType>
  1990. </Compile>
  1991. <Compile Include="noticemanage\noticelistview.aspx.designer.cs">
  1992. <DependentUpon>noticelistview.aspx</DependentUpon>
  1993. </Compile>
  1994. <Compile Include="noticemanage\noticemanagelist.aspx.cs">
  1995. <DependentUpon>noticemanagelist.aspx</DependentUpon>
  1996. <SubType>ASPXCodeBehind</SubType>
  1997. </Compile>
  1998. <Compile Include="noticemanage\noticemanagelist.aspx.designer.cs">
  1999. <DependentUpon>noticemanagelist.aspx</DependentUpon>
  2000. </Compile>
  2001. <Compile Include="noticemanage\selectusers.aspx.cs">
  2002. <DependentUpon>selectusers.aspx</DependentUpon>
  2003. <SubType>ASPXCodeBehind</SubType>
  2004. </Compile>
  2005. <Compile Include="noticemanage\selectusers.aspx.designer.cs">
  2006. <DependentUpon>selectusers.aspx</DependentUpon>
  2007. </Compile>
  2008. <Compile Include="Properties\Settings.Designer.cs">
  2009. <AutoGen>True</AutoGen>
  2010. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  2011. <DependentUpon>Settings.settings</DependentUpon>
  2012. </Compile>
  2013. <Compile Include="qualitymanage\ajax\indexbase.ashx.cs">
  2014. <DependentUpon>indexbase.ashx</DependentUpon>
  2015. </Compile>
  2016. <Compile Include="qualitymanage\ajax\indexcategory.ashx.cs">
  2017. <DependentUpon>indexcategory.ashx</DependentUpon>
  2018. </Compile>
  2019. <Compile Include="qualitymanage\ajax\qcedit.ashx.cs">
  2020. <DependentUpon>qcedit.ashx</DependentUpon>
  2021. </Compile>
  2022. <Compile Include="qualitymanage\ajax\qcmanage.ashx.cs">
  2023. <DependentUpon>qcmanage.ashx</DependentUpon>
  2024. </Compile>
  2025. <Compile Include="qualitymanage\ajax\QcResultList.ashx.cs">
  2026. <DependentUpon>QcResultList.ashx</DependentUpon>
  2027. </Compile>
  2028. <Compile Include="qualitymanage\indexcategoryedit.aspx.cs">
  2029. <DependentUpon>indexcategoryedit.aspx</DependentUpon>
  2030. <SubType>ASPXCodeBehind</SubType>
  2031. </Compile>
  2032. <Compile Include="qualitymanage\indexcategoryedit.aspx.designer.cs">
  2033. <DependentUpon>indexcategoryedit.aspx</DependentUpon>
  2034. </Compile>
  2035. <Compile Include="qualitymanage\indexedit.aspx.cs">
  2036. <DependentUpon>indexedit.aspx</DependentUpon>
  2037. <SubType>ASPXCodeBehind</SubType>
  2038. </Compile>
  2039. <Compile Include="qualitymanage\indexedit.aspx.designer.cs">
  2040. <DependentUpon>indexedit.aspx</DependentUpon>
  2041. </Compile>
  2042. <Compile Include="qualitymanage\indexmanage.aspx.cs">
  2043. <DependentUpon>indexmanage.aspx</DependentUpon>
  2044. <SubType>ASPXCodeBehind</SubType>
  2045. </Compile>
  2046. <Compile Include="qualitymanage\indexmanage.aspx.designer.cs">
  2047. <DependentUpon>indexmanage.aspx</DependentUpon>
  2048. </Compile>
  2049. <Compile Include="qualitymanage\qcedit.aspx.cs">
  2050. <DependentUpon>qcedit.aspx</DependentUpon>
  2051. <SubType>ASPXCodeBehind</SubType>
  2052. </Compile>
  2053. <Compile Include="qualitymanage\qcedit.aspx.designer.cs">
  2054. <DependentUpon>qcedit.aspx</DependentUpon>
  2055. </Compile>
  2056. <Compile Include="qualitymanage\qcmanage.aspx.cs">
  2057. <DependentUpon>qcmanage.aspx</DependentUpon>
  2058. <SubType>ASPXCodeBehind</SubType>
  2059. </Compile>
  2060. <Compile Include="qualitymanage\qcmanage.aspx.designer.cs">
  2061. <DependentUpon>qcmanage.aspx</DependentUpon>
  2062. </Compile>
  2063. <Compile Include="qualitymanage\qcresmanage.aspx.cs">
  2064. <DependentUpon>qcresmanage.aspx</DependentUpon>
  2065. <SubType>ASPXCodeBehind</SubType>
  2066. </Compile>
  2067. <Compile Include="qualitymanage\qcresmanage.aspx.designer.cs">
  2068. <DependentUpon>qcresmanage.aspx</DependentUpon>
  2069. </Compile>
  2070. <Compile Include="qualitymanage\QcResultList.aspx.cs">
  2071. <DependentUpon>QcResultList.aspx</DependentUpon>
  2072. <SubType>ASPXCodeBehind</SubType>
  2073. </Compile>
  2074. <Compile Include="qualitymanage\QcResultList.aspx.designer.cs">
  2075. <DependentUpon>QcResultList.aspx</DependentUpon>
  2076. </Compile>
  2077. <Compile Include="qualitymanage\qcshow.aspx.cs">
  2078. <DependentUpon>qcshow.aspx</DependentUpon>
  2079. <SubType>ASPXCodeBehind</SubType>
  2080. </Compile>
  2081. <Compile Include="qualitymanage\qcshow.aspx.designer.cs">
  2082. <DependentUpon>qcshow.aspx</DependentUpon>
  2083. </Compile>
  2084. <Compile Include="reportmanage\ajax\callinreport.aspx.cs">
  2085. <DependentUpon>callinreport.aspx</DependentUpon>
  2086. <SubType>ASPXCodeBehind</SubType>
  2087. </Compile>
  2088. <Compile Include="reportmanage\ajax\callinreport.aspx.designer.cs">
  2089. <DependentUpon>callinreport.aspx</DependentUpon>
  2090. </Compile>
  2091. <Compile Include="reportmanage\ajax\newcallinreport.aspx.cs">
  2092. <DependentUpon>newcallinreport.aspx</DependentUpon>
  2093. <SubType>ASPXCodeBehind</SubType>
  2094. </Compile>
  2095. <Compile Include="reportmanage\ajax\newcallinreport.aspx.designer.cs">
  2096. <DependentUpon>newcallinreport.aspx</DependentUpon>
  2097. </Compile>
  2098. <Compile Include="reportmanage\callratereport.aspx.cs">
  2099. <DependentUpon>callratereport.aspx</DependentUpon>
  2100. <SubType>ASPXCodeBehind</SubType>
  2101. </Compile>
  2102. <Compile Include="reportmanage\callratereport.aspx.designer.cs">
  2103. <DependentUpon>callratereport.aspx</DependentUpon>
  2104. </Compile>
  2105. <Compile Include="reportmanage\callreports\callinreasonreport.aspx.cs">
  2106. <DependentUpon>callinreasonreport.aspx</DependentUpon>
  2107. <SubType>ASPXCodeBehind</SubType>
  2108. </Compile>
  2109. <Compile Include="reportmanage\callreports\callinreasonreport.aspx.designer.cs">
  2110. <DependentUpon>callinreasonreport.aspx</DependentUpon>
  2111. </Compile>
  2112. <Compile Include="reportmanage\callreports\callinreport.aspx.cs">
  2113. <DependentUpon>callinreport.aspx</DependentUpon>
  2114. <SubType>ASPXCodeBehind</SubType>
  2115. </Compile>
  2116. <Compile Include="reportmanage\callreports\callinreport.aspx.designer.cs">
  2117. <DependentUpon>callinreport.aspx</DependentUpon>
  2118. </Compile>
  2119. <Compile Include="reportmanage\callreports\checkindetailreport.aspx.cs">
  2120. <DependentUpon>checkindetailreport.aspx</DependentUpon>
  2121. <SubType>ASPXCodeBehind</SubType>
  2122. </Compile>
  2123. <Compile Include="reportmanage\callreports\checkindetailreport.aspx.designer.cs">
  2124. <DependentUpon>checkindetailreport.aspx</DependentUpon>
  2125. </Compile>
  2126. <Compile Include="reportmanage\callreports\checkinreport.aspx.cs">
  2127. <DependentUpon>checkinreport.aspx</DependentUpon>
  2128. <SubType>ASPXCodeBehind</SubType>
  2129. </Compile>
  2130. <Compile Include="reportmanage\callreports\checkinreport.aspx.designer.cs">
  2131. <DependentUpon>checkinreport.aspx</DependentUpon>
  2132. </Compile>
  2133. <Compile Include="reportmanage\callreports\newcallinreport.aspx.cs">
  2134. <DependentUpon>newcallinreport.aspx</DependentUpon>
  2135. <SubType>ASPXCodeBehind</SubType>
  2136. </Compile>
  2137. <Compile Include="reportmanage\callreports\newcallinreport.aspx.designer.cs">
  2138. <DependentUpon>newcallinreport.aspx</DependentUpon>
  2139. </Compile>
  2140. <Compile Include="reportmanage\callreports\teletraffic.aspx.cs">
  2141. <DependentUpon>teletraffic.aspx</DependentUpon>
  2142. <SubType>ASPXCodeBehind</SubType>
  2143. </Compile>
  2144. <Compile Include="reportmanage\callreports\teletraffic.aspx.designer.cs">
  2145. <DependentUpon>teletraffic.aspx</DependentUpon>
  2146. </Compile>
  2147. <Compile Include="reportmanage\callreports\workorderreport.aspx.cs">
  2148. <DependentUpon>workorderreport.aspx</DependentUpon>
  2149. <SubType>ASPXCodeBehind</SubType>
  2150. </Compile>
  2151. <Compile Include="reportmanage\callreports\workorderreport.aspx.designer.cs">
  2152. <DependentUpon>workorderreport.aspx</DependentUpon>
  2153. </Compile>
  2154. <Compile Include="reportmanage\dataanalysis\ajax\getdictionaryvaluelist.ashx.cs">
  2155. <DependentUpon>getdictionaryvaluelist.ashx</DependentUpon>
  2156. </Compile>
  2157. <Compile Include="reportmanage\dataanalysis\BasicEngineerWorkOrder.aspx.cs">
  2158. <DependentUpon>BasicEngineerWorkOrder.aspx</DependentUpon>
  2159. <SubType>ASPXCodeBehind</SubType>
  2160. </Compile>
  2161. <Compile Include="reportmanage\dataanalysis\BasicEngineerWorkOrder.aspx.designer.cs">
  2162. <DependentUpon>BasicEngineerWorkOrder.aspx</DependentUpon>
  2163. </Compile>
  2164. <Compile Include="reportmanage\dataanalysis\CallInDept.aspx.cs">
  2165. <DependentUpon>CallInDept.aspx</DependentUpon>
  2166. <SubType>ASPXCodeBehind</SubType>
  2167. </Compile>
  2168. <Compile Include="reportmanage\dataanalysis\CallInDept.aspx.designer.cs">
  2169. <DependentUpon>CallInDept.aspx</DependentUpon>
  2170. </Compile>
  2171. <Compile Include="reportmanage\dataanalysis\CallInPerson.aspx.cs">
  2172. <DependentUpon>CallInPerson.aspx</DependentUpon>
  2173. <SubType>ASPXCodeBehind</SubType>
  2174. </Compile>
  2175. <Compile Include="reportmanage\dataanalysis\CallInPerson.aspx.designer.cs">
  2176. <DependentUpon>CallInPerson.aspx</DependentUpon>
  2177. </Compile>
  2178. <Compile Include="reportmanage\dataanalysis\DepartmentWorkOrder.aspx.cs">
  2179. <DependentUpon>DepartmentWorkOrder.aspx</DependentUpon>
  2180. <SubType>ASPXCodeBehind</SubType>
  2181. </Compile>
  2182. <Compile Include="reportmanage\dataanalysis\DepartmentWorkOrder.aspx.designer.cs">
  2183. <DependentUpon>DepartmentWorkOrder.aspx</DependentUpon>
  2184. </Compile>
  2185. <Compile Include="reportmanage\dataanalysis\ExecutionEfficiency.aspx.cs">
  2186. <DependentUpon>ExecutionEfficiency.aspx</DependentUpon>
  2187. <SubType>ASPXCodeBehind</SubType>
  2188. </Compile>
  2189. <Compile Include="reportmanage\dataanalysis\ExecutionEfficiency.aspx.designer.cs">
  2190. <DependentUpon>ExecutionEfficiency.aspx</DependentUpon>
  2191. </Compile>
  2192. <Compile Include="reportmanage\dataanalysis\KnowledgeSediment.aspx.cs">
  2193. <DependentUpon>KnowledgeSediment.aspx</DependentUpon>
  2194. <SubType>ASPXCodeBehind</SubType>
  2195. </Compile>
  2196. <Compile Include="reportmanage\dataanalysis\KnowledgeSediment.aspx.designer.cs">
  2197. <DependentUpon>KnowledgeSediment.aspx</DependentUpon>
  2198. </Compile>
  2199. <Compile Include="reportmanage\dataanalysis\WorkOrderDistribution.aspx.cs">
  2200. <DependentUpon>WorkOrderDistribution.aspx</DependentUpon>
  2201. <SubType>ASPXCodeBehind</SubType>
  2202. </Compile>
  2203. <Compile Include="reportmanage\dataanalysis\WorkOrderDistribution.aspx.designer.cs">
  2204. <DependentUpon>WorkOrderDistribution.aspx</DependentUpon>
  2205. </Compile>
  2206. <Compile Include="reportmanage\losscalldetailreport.aspx.cs">
  2207. <DependentUpon>losscalldetailreport.aspx</DependentUpon>
  2208. <SubType>ASPXCodeBehind</SubType>
  2209. </Compile>
  2210. <Compile Include="reportmanage\losscalldetailreport.aspx.designer.cs">
  2211. <DependentUpon>losscalldetailreport.aspx</DependentUpon>
  2212. </Compile>
  2213. <Compile Include="reportmanage\operationdata\CallRecInfList.aspx.cs">
  2214. <DependentUpon>CallRecInfList.aspx</DependentUpon>
  2215. <SubType>ASPXCodeBehind</SubType>
  2216. </Compile>
  2217. <Compile Include="reportmanage\operationdata\CallRecInfList.aspx.designer.cs">
  2218. <DependentUpon>CallRecInfList.aspx</DependentUpon>
  2219. </Compile>
  2220. <Compile Include="reportmanage\operationdata\controls\OneUserAPI.ashx.cs">
  2221. <DependentUpon>OneUserAPI.ashx</DependentUpon>
  2222. </Compile>
  2223. <Compile Include="reportmanage\operationdata\controls\OneUserDepartmentAPI.ashx.cs">
  2224. <DependentUpon>OneUserDepartmentAPI.ashx</DependentUpon>
  2225. </Compile>
  2226. <Compile Include="reportmanage\operationdata\controls\TowUserAPI.ashx.cs">
  2227. <DependentUpon>TowUserAPI.ashx</DependentUpon>
  2228. </Compile>
  2229. <Compile Include="reportmanage\operationdata\controls\TowUserDepartmentAPI.ashx.cs">
  2230. <DependentUpon>TowUserDepartmentAPI.ashx</DependentUpon>
  2231. </Compile>
  2232. <Compile Include="reportmanage\operationdata\controls\TowUserGZL.ashx.cs">
  2233. <DependentUpon>TowUserGZL.ashx</DependentUpon>
  2234. </Compile>
  2235. <Compile Include="reportmanage\operationdata\controls\YearContrast.ashx.cs">
  2236. <DependentUpon>YearContrast.ashx</DependentUpon>
  2237. </Compile>
  2238. <Compile Include="reportmanage\operationdata\controls\ZuoXiTongHua.ashx.cs">
  2239. <DependentUpon>ZuoXiTongHua.ashx</DependentUpon>
  2240. </Compile>
  2241. <Compile Include="reportmanage\operationdata\controls\ZuoXiWorkTotal.ashx.cs">
  2242. <DependentUpon>ZuoXiWorkTotal.ashx</DependentUpon>
  2243. </Compile>
  2244. <Compile Include="reportmanage\operationdata\controls\ZuoXiWorkTotalNew.ashx.cs">
  2245. <DependentUpon>ZuoXiWorkTotalNew.ashx</DependentUpon>
  2246. </Compile>
  2247. <Compile Include="reportmanage\operationdata\OneUserAPI.aspx.cs">
  2248. <DependentUpon>OneUserAPI.aspx</DependentUpon>
  2249. <SubType>ASPXCodeBehind</SubType>
  2250. </Compile>
  2251. <Compile Include="reportmanage\operationdata\OneUserAPI.aspx.designer.cs">
  2252. <DependentUpon>OneUserAPI.aspx</DependentUpon>
  2253. </Compile>
  2254. <Compile Include="reportmanage\operationdata\OneUserDepartmentAPI.aspx.cs">
  2255. <DependentUpon>OneUserDepartmentAPI.aspx</DependentUpon>
  2256. <SubType>ASPXCodeBehind</SubType>
  2257. </Compile>
  2258. <Compile Include="reportmanage\operationdata\OneUserDepartmentAPI.aspx.designer.cs">
  2259. <DependentUpon>OneUserDepartmentAPI.aspx</DependentUpon>
  2260. </Compile>
  2261. <Compile Include="reportmanage\operationdata\TowUserAPI.aspx.cs">
  2262. <DependentUpon>TowUserAPI.aspx</DependentUpon>
  2263. <SubType>ASPXCodeBehind</SubType>
  2264. </Compile>
  2265. <Compile Include="reportmanage\operationdata\TowUserAPI.aspx.designer.cs">
  2266. <DependentUpon>TowUserAPI.aspx</DependentUpon>
  2267. </Compile>
  2268. <Compile Include="reportmanage\operationdata\TowUserDepartmentAPI.aspx.cs">
  2269. <DependentUpon>TowUserDepartmentAPI.aspx</DependentUpon>
  2270. <SubType>ASPXCodeBehind</SubType>
  2271. </Compile>
  2272. <Compile Include="reportmanage\operationdata\TowUserDepartmentAPI.aspx.designer.cs">
  2273. <DependentUpon>TowUserDepartmentAPI.aspx</DependentUpon>
  2274. </Compile>
  2275. <Compile Include="reportmanage\operationdata\TowUserGZL.aspx.cs">
  2276. <DependentUpon>TowUserGZL.aspx</DependentUpon>
  2277. <SubType>ASPXCodeBehind</SubType>
  2278. </Compile>
  2279. <Compile Include="reportmanage\operationdata\TowUserGZL.aspx.designer.cs">
  2280. <DependentUpon>TowUserGZL.aspx</DependentUpon>
  2281. </Compile>
  2282. <Compile Include="reportmanage\operationdata\YearContrast.aspx.cs">
  2283. <DependentUpon>YearContrast.aspx</DependentUpon>
  2284. <SubType>ASPXCodeBehind</SubType>
  2285. </Compile>
  2286. <Compile Include="reportmanage\operationdata\YearContrast.aspx.designer.cs">
  2287. <DependentUpon>YearContrast.aspx</DependentUpon>
  2288. </Compile>
  2289. <Compile Include="reportmanage\operationdata\YearContrastPic.aspx.cs">
  2290. <DependentUpon>YearContrastPic.aspx</DependentUpon>
  2291. <SubType>ASPXCodeBehind</SubType>
  2292. </Compile>
  2293. <Compile Include="reportmanage\operationdata\YearContrastPic.aspx.designer.cs">
  2294. <DependentUpon>YearContrastPic.aspx</DependentUpon>
  2295. </Compile>
  2296. <Compile Include="reportmanage\operationdata\ZuoXiManYiDu.aspx.cs">
  2297. <DependentUpon>ZuoXiManYiDu.aspx</DependentUpon>
  2298. <SubType>ASPXCodeBehind</SubType>
  2299. </Compile>
  2300. <Compile Include="reportmanage\operationdata\ZuoXiManYiDu.aspx.designer.cs">
  2301. <DependentUpon>ZuoXiManYiDu.aspx</DependentUpon>
  2302. </Compile>
  2303. <Compile Include="reportmanage\operationdata\ZuoXiTongHua.aspx.cs">
  2304. <DependentUpon>ZuoXiTongHua.aspx</DependentUpon>
  2305. <SubType>ASPXCodeBehind</SubType>
  2306. </Compile>
  2307. <Compile Include="reportmanage\operationdata\ZuoXiTongHua.aspx.designer.cs">
  2308. <DependentUpon>ZuoXiTongHua.aspx</DependentUpon>
  2309. </Compile>
  2310. <Compile Include="reportmanage\operationdata\ZuoXiWorkTotal.aspx.cs">
  2311. <DependentUpon>ZuoXiWorkTotal.aspx</DependentUpon>
  2312. <SubType>ASPXCodeBehind</SubType>
  2313. </Compile>
  2314. <Compile Include="reportmanage\operationdata\ZuoXiWorkTotal.aspx.designer.cs">
  2315. <DependentUpon>ZuoXiWorkTotal.aspx</DependentUpon>
  2316. </Compile>
  2317. <Compile Include="reportmanage\_controls\callinreport.ascx.cs">
  2318. <DependentUpon>callinreport.ascx</DependentUpon>
  2319. <SubType>ASPXCodeBehind</SubType>
  2320. </Compile>
  2321. <Compile Include="reportmanage\_controls\callinreport.ascx.designer.cs">
  2322. <DependentUpon>callinreport.ascx</DependentUpon>
  2323. </Compile>
  2324. <Compile Include="reportmanage\_controls\newcallinreport.ascx.cs">
  2325. <DependentUpon>newcallinreport.ascx</DependentUpon>
  2326. <SubType>ASPXCodeBehind</SubType>
  2327. </Compile>
  2328. <Compile Include="reportmanage\_controls\newcallinreport.ascx.designer.cs">
  2329. <DependentUpon>newcallinreport.ascx</DependentUpon>
  2330. </Compile>
  2331. <Compile Include="smsmanage\smsTypeEdit.aspx.cs">
  2332. <DependentUpon>smsTypeEdit.aspx</DependentUpon>
  2333. <SubType>ASPXCodeBehind</SubType>
  2334. </Compile>
  2335. <Compile Include="smsmanage\smsTypeEdit.aspx.designer.cs">
  2336. <DependentUpon>smsTypeEdit.aspx</DependentUpon>
  2337. </Compile>
  2338. <Compile Include="telmanage\ajax\addcontact.ashx.cs">
  2339. <DependentUpon>addcontact.ashx</DependentUpon>
  2340. </Compile>
  2341. <Compile Include="telmanage\ajax\callgray.ashx.cs">
  2342. <DependentUpon>callgray.ashx</DependentUpon>
  2343. </Compile>
  2344. <Compile Include="telmanage\ajax\callinNew.ashx.cs">
  2345. <DependentUpon>callinNew.ashx</DependentUpon>
  2346. </Compile>
  2347. <Compile Include="telmanage\ajax\callred.ashx.cs">
  2348. <DependentUpon>callred.ashx</DependentUpon>
  2349. </Compile>
  2350. <Compile Include="telmanage\ajax\editandsavecustomerinfo.ashx.cs">
  2351. <DependentUpon>editandsavecustomerinfo.ashx</DependentUpon>
  2352. </Compile>
  2353. <Compile Include="telmanage\ajax\reasonmanage.ashx.cs">
  2354. <DependentUpon>reasonmanage.ashx</DependentUpon>
  2355. </Compile>
  2356. <Compile Include="telmanage\ajax\workcalendarset.ashx.cs">
  2357. <DependentUpon>workcalendarset.ashx</DependentUpon>
  2358. </Compile>
  2359. <Compile Include="telmanage\callgraylist.aspx.cs">
  2360. <DependentUpon>callgraylist.aspx</DependentUpon>
  2361. <SubType>ASPXCodeBehind</SubType>
  2362. </Compile>
  2363. <Compile Include="telmanage\callgraylist.aspx.designer.cs">
  2364. <DependentUpon>callgraylist.aspx</DependentUpon>
  2365. </Compile>
  2366. <Compile Include="telmanage\callgraylisteditor.aspx.cs">
  2367. <DependentUpon>callgraylisteditor.aspx</DependentUpon>
  2368. <SubType>ASPXCodeBehind</SubType>
  2369. </Compile>
  2370. <Compile Include="telmanage\callgraylisteditor.aspx.designer.cs">
  2371. <DependentUpon>callgraylisteditor.aspx</DependentUpon>
  2372. </Compile>
  2373. <Compile Include="telmanage\callinNew.aspx.cs">
  2374. <DependentUpon>callinNew.aspx</DependentUpon>
  2375. <SubType>ASPXCodeBehind</SubType>
  2376. </Compile>
  2377. <Compile Include="telmanage\callinNew.aspx.designer.cs">
  2378. <DependentUpon>callinNew.aspx</DependentUpon>
  2379. </Compile>
  2380. <Compile Include="telmanage\callinnewget.aspx.cs">
  2381. <DependentUpon>callinnewget.aspx</DependentUpon>
  2382. <SubType>ASPXCodeBehind</SubType>
  2383. </Compile>
  2384. <Compile Include="telmanage\callinnewget.aspx.designer.cs">
  2385. <DependentUpon>callinnewget.aspx</DependentUpon>
  2386. </Compile>
  2387. <Compile Include="telmanage\callinreason.aspx.cs">
  2388. <DependentUpon>callinreason.aspx</DependentUpon>
  2389. <SubType>ASPXCodeBehind</SubType>
  2390. </Compile>
  2391. <Compile Include="telmanage\callinreason.aspx.designer.cs">
  2392. <DependentUpon>callinreason.aspx</DependentUpon>
  2393. </Compile>
  2394. <Compile Include="telmanage\callinreasonedit.aspx.cs">
  2395. <DependentUpon>callinreasonedit.aspx</DependentUpon>
  2396. <SubType>ASPXCodeBehind</SubType>
  2397. </Compile>
  2398. <Compile Include="telmanage\callinreasonedit.aspx.designer.cs">
  2399. <DependentUpon>callinreasonedit.aspx</DependentUpon>
  2400. </Compile>
  2401. <Compile Include="telmanage\callinreasonls.aspx.cs">
  2402. <DependentUpon>callinreasonls.aspx</DependentUpon>
  2403. <SubType>ASPXCodeBehind</SubType>
  2404. </Compile>
  2405. <Compile Include="telmanage\callinreasonls.aspx.designer.cs">
  2406. <DependentUpon>callinreasonls.aspx</DependentUpon>
  2407. </Compile>
  2408. <Compile Include="telmanage\callinreasonzsjm.aspx.cs">
  2409. <DependentUpon>callinreasonzsjm.aspx</DependentUpon>
  2410. <SubType>ASPXCodeBehind</SubType>
  2411. </Compile>
  2412. <Compile Include="telmanage\callinreasonzsjm.aspx.designer.cs">
  2413. <DependentUpon>callinreasonzsjm.aspx</DependentUpon>
  2414. </Compile>
  2415. <Compile Include="telmanage\callredlist.aspx.cs">
  2416. <DependentUpon>callredlist.aspx</DependentUpon>
  2417. <SubType>ASPXCodeBehind</SubType>
  2418. </Compile>
  2419. <Compile Include="telmanage\callredlist.aspx.designer.cs">
  2420. <DependentUpon>callredlist.aspx</DependentUpon>
  2421. </Compile>
  2422. <Compile Include="telmanage\callredlisteditor.aspx.cs">
  2423. <DependentUpon>callredlisteditor.aspx</DependentUpon>
  2424. <SubType>ASPXCodeBehind</SubType>
  2425. </Compile>
  2426. <Compile Include="telmanage\callredlisteditor.aspx.designer.cs">
  2427. <DependentUpon>callredlisteditor.aspx</DependentUpon>
  2428. </Compile>
  2429. <Compile Include="telmanage\ReasonAddandEdit.aspx.cs">
  2430. <DependentUpon>ReasonAddandEdit.aspx</DependentUpon>
  2431. <SubType>ASPXCodeBehind</SubType>
  2432. </Compile>
  2433. <Compile Include="telmanage\ReasonAddandEdit.aspx.designer.cs">
  2434. <DependentUpon>ReasonAddandEdit.aspx</DependentUpon>
  2435. </Compile>
  2436. <Compile Include="telmanage\reasonmanage.aspx.cs">
  2437. <DependentUpon>reasonmanage.aspx</DependentUpon>
  2438. <SubType>ASPXCodeBehind</SubType>
  2439. </Compile>
  2440. <Compile Include="telmanage\reasonmanage.aspx.designer.cs">
  2441. <DependentUpon>reasonmanage.aspx</DependentUpon>
  2442. </Compile>
  2443. <Compile Include="telmanage\recordhighsearch.aspx.cs">
  2444. <DependentUpon>recordhighsearch.aspx</DependentUpon>
  2445. <SubType>ASPXCodeBehind</SubType>
  2446. </Compile>
  2447. <Compile Include="telmanage\recordhighsearch.aspx.designer.cs">
  2448. <DependentUpon>recordhighsearch.aspx</DependentUpon>
  2449. </Compile>
  2450. <Compile Include="telmanage\seatmonitoringlist.aspx.cs">
  2451. <DependentUpon>seatmonitoringlist.aspx</DependentUpon>
  2452. <SubType>ASPXCodeBehind</SubType>
  2453. </Compile>
  2454. <Compile Include="telmanage\seatmonitoringlist.aspx.designer.cs">
  2455. <DependentUpon>seatmonitoringlist.aspx</DependentUpon>
  2456. </Compile>
  2457. <Compile Include="telmanage\seatmonitoringlistnew.aspx.cs">
  2458. <DependentUpon>seatmonitoringlistnew.aspx</DependentUpon>
  2459. <SubType>ASPXCodeBehind</SubType>
  2460. </Compile>
  2461. <Compile Include="telmanage\seatmonitoringlistnew.aspx.designer.cs">
  2462. <DependentUpon>seatmonitoringlistnew.aspx</DependentUpon>
  2463. </Compile>
  2464. <Compile Include="telmanage\workcalendarset.aspx.cs">
  2465. <DependentUpon>workcalendarset.aspx</DependentUpon>
  2466. <SubType>ASPXCodeBehind</SubType>
  2467. </Compile>
  2468. <Compile Include="telmanage\workcalendarset.aspx.designer.cs">
  2469. <DependentUpon>workcalendarset.aspx</DependentUpon>
  2470. </Compile>
  2471. <Compile Include="telmanage\worktimesset.aspx.cs">
  2472. <DependentUpon>worktimesset.aspx</DependentUpon>
  2473. <SubType>ASPXCodeBehind</SubType>
  2474. </Compile>
  2475. <Compile Include="telmanage\worktimesset.aspx.designer.cs">
  2476. <DependentUpon>worktimesset.aspx</DependentUpon>
  2477. </Compile>
  2478. <Compile Include="telmanage\worktimessetaddandedit.aspx.cs">
  2479. <DependentUpon>worktimessetaddandedit.aspx</DependentUpon>
  2480. <SubType>ASPXCodeBehind</SubType>
  2481. </Compile>
  2482. <Compile Include="telmanage\worktimessetaddandedit.aspx.designer.cs">
  2483. <DependentUpon>worktimessetaddandedit.aspx</DependentUpon>
  2484. </Compile>
  2485. <Compile Include="testform.aspx.cs">
  2486. <DependentUpon>testform.aspx</DependentUpon>
  2487. <SubType>ASPXCodeBehind</SubType>
  2488. </Compile>
  2489. <Compile Include="testform.aspx.designer.cs">
  2490. <DependentUpon>testform.aspx</DependentUpon>
  2491. </Compile>
  2492. <Compile Include="tools\login.ashx.cs">
  2493. <DependentUpon>login.ashx</DependentUpon>
  2494. </Compile>
  2495. <Compile Include="Web References\WebReferenceFax\Reference.cs" />
  2496. <Compile Include="workordermanage\ajax\ligerComboBox.ashx.cs">
  2497. <DependentUpon>ligerComboBox.ashx</DependentUpon>
  2498. </Compile>
  2499. <Compile Include="workordermanage\ajax\workorderDHFList.ashx.cs">
  2500. <DependentUpon>workorderDHFList.ashx</DependentUpon>
  2501. </Compile>
  2502. <Compile Include="workordermanage\ajax\workorderDJDList.ashx.cs">
  2503. <DependentUpon>workorderDJDList.ashx</DependentUpon>
  2504. </Compile>
  2505. <Compile Include="workordermanage\ajax\workorderDJSList.ashx.cs">
  2506. <DependentUpon>workorderDJSList.ashx</DependentUpon>
  2507. </Compile>
  2508. <Compile Include="workordermanage\ajax\workorderDZPList.ashx.cs">
  2509. <DependentUpon>workorderDZPList.ashx</DependentUpon>
  2510. </Compile>
  2511. <Compile Include="workordermanage\ajax\YXGCSCountsList.ashx.cs">
  2512. <DependentUpon>YXGCSCountsList.ashx</DependentUpon>
  2513. </Compile>
  2514. <Compile Include="workordermanage\workordernew\ajax\woOrder.ashx.cs">
  2515. <DependentUpon>woOrder.ashx</DependentUpon>
  2516. </Compile>
  2517. <Compile Include="workordermanage\workordernew\selectusers.aspx.cs">
  2518. <DependentUpon>selectusers.aspx</DependentUpon>
  2519. <SubType>ASPXCodeBehind</SubType>
  2520. </Compile>
  2521. <Compile Include="workordermanage\workordernew\selectusers.aspx.designer.cs">
  2522. <DependentUpon>selectusers.aspx</DependentUpon>
  2523. </Compile>
  2524. <Compile Include="workordermanage\workordernew\workorderadd.aspx.cs">
  2525. <DependentUpon>workorderadd.aspx</DependentUpon>
  2526. <SubType>ASPXCodeBehind</SubType>
  2527. </Compile>
  2528. <Compile Include="workordermanage\workordernew\workorderadd.aspx.designer.cs">
  2529. <DependentUpon>workorderadd.aspx</DependentUpon>
  2530. </Compile>
  2531. <Compile Include="workordermanage\workordernew\WorkOrderCLDeal.aspx.cs">
  2532. <DependentUpon>WorkOrderCLDeal.aspx</DependentUpon>
  2533. <SubType>ASPXCodeBehind</SubType>
  2534. </Compile>
  2535. <Compile Include="workordermanage\workordernew\WorkOrderCLDeal.aspx.designer.cs">
  2536. <DependentUpon>WorkOrderCLDeal.aspx</DependentUpon>
  2537. </Compile>
  2538. <Compile Include="workordermanage\workordernew\WorkOrderInfo.aspx.cs">
  2539. <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
  2540. <SubType>ASPXCodeBehind</SubType>
  2541. </Compile>
  2542. <Compile Include="workordermanage\workordernew\WorkOrderInfo.aspx.designer.cs">
  2543. <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
  2544. </Compile>
  2545. <Compile Include="workordermanage\workordernew\WorkOrderMyList.aspx.cs">
  2546. <DependentUpon>WorkOrderMyList.aspx</DependentUpon>
  2547. <SubType>ASPXCodeBehind</SubType>
  2548. </Compile>
  2549. <Compile Include="workordermanage\workordernew\WorkOrderMyList.aspx.designer.cs">
  2550. <DependentUpon>WorkOrderMyList.aspx</DependentUpon>
  2551. </Compile>
  2552. <Compile Include="workordermanage\workordernew\WorkOrderPDDeal.aspx.cs">
  2553. <DependentUpon>WorkOrderPDDeal.aspx</DependentUpon>
  2554. <SubType>ASPXCodeBehind</SubType>
  2555. </Compile>
  2556. <Compile Include="workordermanage\workordernew\WorkOrderPDDeal.aspx.designer.cs">
  2557. <DependentUpon>WorkOrderPDDeal.aspx</DependentUpon>
  2558. </Compile>
  2559. <Compile Include="workordermanage\workordernew\WorkOrderSearch.aspx.cs">
  2560. <DependentUpon>WorkOrderSearch.aspx</DependentUpon>
  2561. <SubType>ASPXCodeBehind</SubType>
  2562. </Compile>
  2563. <Compile Include="workordermanage\workordernew\WorkOrderSearch.aspx.designer.cs">
  2564. <DependentUpon>WorkOrderSearch.aspx</DependentUpon>
  2565. </Compile>
  2566. <Compile Include="workordermanage\workordernew\WorkOrderUGDeal.aspx.cs">
  2567. <DependentUpon>WorkOrderUGDeal.aspx</DependentUpon>
  2568. <SubType>ASPXCodeBehind</SubType>
  2569. </Compile>
  2570. <Compile Include="workordermanage\workordernew\WorkOrderUGDeal.aspx.designer.cs">
  2571. <DependentUpon>WorkOrderUGDeal.aspx</DependentUpon>
  2572. </Compile>
  2573. <Compile Include="workordermanage\workordernew\WorkOrderUrgeList.aspx.cs">
  2574. <DependentUpon>WorkOrderUrgeList.aspx</DependentUpon>
  2575. <SubType>ASPXCodeBehind</SubType>
  2576. </Compile>
  2577. <Compile Include="workordermanage\workordernew\WorkOrderUrgeList.aspx.designer.cs">
  2578. <DependentUpon>WorkOrderUrgeList.aspx</DependentUpon>
  2579. </Compile>
  2580. <Compile Include="workordermanage\workordernew\WorkOrderWCLList.aspx.cs">
  2581. <DependentUpon>WorkOrderWCLList.aspx</DependentUpon>
  2582. <SubType>ASPXCodeBehind</SubType>
  2583. </Compile>
  2584. <Compile Include="workordermanage\workordernew\WorkOrderWCLList.aspx.designer.cs">
  2585. <DependentUpon>WorkOrderWCLList.aspx</DependentUpon>
  2586. </Compile>
  2587. <Compile Include="workordermanage\workordernew\WorkOrderWPDList.aspx.cs">
  2588. <DependentUpon>WorkOrderWPDList.aspx</DependentUpon>
  2589. <SubType>ASPXCodeBehind</SubType>
  2590. </Compile>
  2591. <Compile Include="workordermanage\workordernew\WorkOrderWPDList.aspx.designer.cs">
  2592. <DependentUpon>WorkOrderWPDList.aspx</DependentUpon>
  2593. </Compile>
  2594. <Compile Include="workordermanage\workorder\shangchuan.aspx.cs">
  2595. <DependentUpon>shangchuan.aspx</DependentUpon>
  2596. <SubType>ASPXCodeBehind</SubType>
  2597. </Compile>
  2598. <Compile Include="workordermanage\workorder\shangchuan.aspx.designer.cs">
  2599. <DependentUpon>shangchuan.aspx</DependentUpon>
  2600. </Compile>
  2601. <Compile Include="workordermanage\workorder\shangchuanAdd.aspx.cs">
  2602. <DependentUpon>shangchuanAdd.aspx</DependentUpon>
  2603. <SubType>ASPXCodeBehind</SubType>
  2604. </Compile>
  2605. <Compile Include="workordermanage\workorder\shangchuanAdd.aspx.designer.cs">
  2606. <DependentUpon>shangchuanAdd.aspx</DependentUpon>
  2607. </Compile>
  2608. <Compile Include="workordermanage\workorder\workorderDHFList.aspx.cs">
  2609. <DependentUpon>workorderDHFList.aspx</DependentUpon>
  2610. <SubType>ASPXCodeBehind</SubType>
  2611. </Compile>
  2612. <Compile Include="workordermanage\workorder\workorderDHFList.aspx.designer.cs">
  2613. <DependentUpon>workorderDHFList.aspx</DependentUpon>
  2614. </Compile>
  2615. <Compile Include="workordermanage\workorder\workorderDJDList.aspx.cs">
  2616. <DependentUpon>workorderDJDList.aspx</DependentUpon>
  2617. <SubType>ASPXCodeBehind</SubType>
  2618. </Compile>
  2619. <Compile Include="workordermanage\workorder\workorderDJDList.aspx.designer.cs">
  2620. <DependentUpon>workorderDJDList.aspx</DependentUpon>
  2621. </Compile>
  2622. <Compile Include="workordermanage\workorder\workorderDJSList.aspx.cs">
  2623. <DependentUpon>workorderDJSList.aspx</DependentUpon>
  2624. <SubType>ASPXCodeBehind</SubType>
  2625. </Compile>
  2626. <Compile Include="workordermanage\workorder\workorderDJSList.aspx.designer.cs">
  2627. <DependentUpon>workorderDJSList.aspx</DependentUpon>
  2628. </Compile>
  2629. <Compile Include="workordermanage\workorder\workorderDZPList.aspx.cs">
  2630. <DependentUpon>workorderDZPList.aspx</DependentUpon>
  2631. <SubType>ASPXCodeBehind</SubType>
  2632. </Compile>
  2633. <Compile Include="workordermanage\workorder\workorderDZPList.aspx.designer.cs">
  2634. <DependentUpon>workorderDZPList.aspx</DependentUpon>
  2635. </Compile>
  2636. <Compile Include="workordermanage\workorder\workorderGCSCountsList.aspx.cs">
  2637. <DependentUpon>workorderGCSCountsList.aspx</DependentUpon>
  2638. <SubType>ASPXCodeBehind</SubType>
  2639. </Compile>
  2640. <Compile Include="workordermanage\workorder\workorderGCSCountsList.aspx.designer.cs">
  2641. <DependentUpon>workorderGCSCountsList.aspx</DependentUpon>
  2642. </Compile>
  2643. <Compile Include="workordermanage\workorder\workorderSearchGaoJi.aspx.cs">
  2644. <DependentUpon>workorderSearchGaoJi.aspx</DependentUpon>
  2645. <SubType>ASPXCodeBehind</SubType>
  2646. </Compile>
  2647. <Compile Include="workordermanage\workorder\workorderSearchGaoJi.aspx.designer.cs">
  2648. <DependentUpon>workorderSearchGaoJi.aspx</DependentUpon>
  2649. </Compile>
  2650. <Compile Include="workordermanage\workorder\workordervipshow.aspx.cs">
  2651. <DependentUpon>workordervipshow.aspx</DependentUpon>
  2652. <SubType>ASPXCodeBehind</SubType>
  2653. </Compile>
  2654. <Compile Include="workordermanage\workorder\workordervipshow.aspx.designer.cs">
  2655. <DependentUpon>workordervipshow.aspx</DependentUpon>
  2656. </Compile>
  2657. <Compile Include="workordermanage\workorder\workorderYXGCSCountsList.aspx.cs">
  2658. <DependentUpon>workorderYXGCSCountsList.aspx</DependentUpon>
  2659. <SubType>ASPXCodeBehind</SubType>
  2660. </Compile>
  2661. <Compile Include="workordermanage\workorder\workorderYXGCSCountsList.aspx.designer.cs">
  2662. <DependentUpon>workorderYXGCSCountsList.aspx</DependentUpon>
  2663. </Compile>
  2664. <Compile Include="workordermanage\_controls\ctl_workorderhistrory.ascx.cs">
  2665. <DependentUpon>ctl_workorderhistrory.ascx</DependentUpon>
  2666. <SubType>ASPXCodeBehind</SubType>
  2667. </Compile>
  2668. <Compile Include="workordermanage\_controls\ctl_workorderhistrory.ascx.designer.cs">
  2669. <DependentUpon>ctl_workorderhistrory.ascx</DependentUpon>
  2670. </Compile>
  2671. <Compile Include="workordermanage\_controls\ctl_workordernote.ascx.cs">
  2672. <DependentUpon>ctl_workordernote.ascx</DependentUpon>
  2673. <SubType>ASPXCodeBehind</SubType>
  2674. </Compile>
  2675. <Compile Include="workordermanage\_controls\ctl_workordernote.ascx.designer.cs">
  2676. <DependentUpon>ctl_workordernote.ascx</DependentUpon>
  2677. </Compile>
  2678. <Compile Include="center.aspx.cs">
  2679. <DependentUpon>center.aspx</DependentUpon>
  2680. <SubType>ASPXCodeBehind</SubType>
  2681. </Compile>
  2682. <Compile Include="center.aspx.designer.cs">
  2683. <DependentUpon>center.aspx</DependentUpon>
  2684. </Compile>
  2685. <Compile Include="customermanage\ajax\customer.ashx.cs">
  2686. <DependentUpon>customer.ashx</DependentUpon>
  2687. </Compile>
  2688. <Compile Include="customermanage\ajax\customeredit.ashx.cs">
  2689. <DependentUpon>customeredit.ashx</DependentUpon>
  2690. </Compile>
  2691. <Compile Include="customermanage\ajax\person.ashx.cs">
  2692. <DependentUpon>person.ashx</DependentUpon>
  2693. </Compile>
  2694. <Compile Include="customermanage\ajax\personedit.ashx.cs">
  2695. <DependentUpon>personedit.ashx</DependentUpon>
  2696. </Compile>
  2697. <Compile Include="customermanage\ajax\regionlist.ashx.cs">
  2698. <DependentUpon>regionlist.ashx</DependentUpon>
  2699. </Compile>
  2700. <Compile Include="customermanage\categorylist.aspx.cs">
  2701. <DependentUpon>categorylist.aspx</DependentUpon>
  2702. <SubType>ASPXCodeBehind</SubType>
  2703. </Compile>
  2704. <Compile Include="customermanage\categorylist.aspx.designer.cs">
  2705. <DependentUpon>categorylist.aspx</DependentUpon>
  2706. </Compile>
  2707. <Compile Include="customermanage\customeredit.aspx.cs">
  2708. <DependentUpon>customeredit.aspx</DependentUpon>
  2709. <SubType>ASPXCodeBehind</SubType>
  2710. </Compile>
  2711. <Compile Include="customermanage\customeredit.aspx.designer.cs">
  2712. <DependentUpon>customeredit.aspx</DependentUpon>
  2713. </Compile>
  2714. <Compile Include="customermanage\customerimport.aspx.cs">
  2715. <DependentUpon>customerimport.aspx</DependentUpon>
  2716. <SubType>ASPXCodeBehind</SubType>
  2717. </Compile>
  2718. <Compile Include="customermanage\customerimport.aspx.designer.cs">
  2719. <DependentUpon>customerimport.aspx</DependentUpon>
  2720. </Compile>
  2721. <Compile Include="customermanage\customerlist.aspx.cs">
  2722. <DependentUpon>customerlist.aspx</DependentUpon>
  2723. <SubType>ASPXCodeBehind</SubType>
  2724. </Compile>
  2725. <Compile Include="customermanage\customerlist.aspx.designer.cs">
  2726. <DependentUpon>customerlist.aspx</DependentUpon>
  2727. </Compile>
  2728. <Compile Include="customermanage\customerpersonlist.aspx.cs">
  2729. <DependentUpon>customerpersonlist.aspx</DependentUpon>
  2730. <SubType>ASPXCodeBehind</SubType>
  2731. </Compile>
  2732. <Compile Include="customermanage\customerpersonlist.aspx.designer.cs">
  2733. <DependentUpon>customerpersonlist.aspx</DependentUpon>
  2734. </Compile>
  2735. <Compile Include="customermanage\customerSYNC.aspx.cs">
  2736. <DependentUpon>customerSYNC.aspx</DependentUpon>
  2737. <SubType>ASPXCodeBehind</SubType>
  2738. </Compile>
  2739. <Compile Include="customermanage\customerSYNC.aspx.designer.cs">
  2740. <DependentUpon>customerSYNC.aspx</DependentUpon>
  2741. </Compile>
  2742. <Compile Include="customermanage\personedit.aspx.cs">
  2743. <DependentUpon>personedit.aspx</DependentUpon>
  2744. <SubType>ASPXCodeBehind</SubType>
  2745. </Compile>
  2746. <Compile Include="customermanage\personedit.aspx.designer.cs">
  2747. <DependentUpon>personedit.aspx</DependentUpon>
  2748. </Compile>
  2749. <Compile Include="customermanage\personlist.aspx.cs">
  2750. <DependentUpon>personlist.aspx</DependentUpon>
  2751. <SubType>ASPXCodeBehind</SubType>
  2752. </Compile>
  2753. <Compile Include="customermanage\personlist.aspx.designer.cs">
  2754. <DependentUpon>personlist.aspx</DependentUpon>
  2755. </Compile>
  2756. <Compile Include="customermanage\personmodify.aspx.cs">
  2757. <DependentUpon>personmodify.aspx</DependentUpon>
  2758. <SubType>ASPXCodeBehind</SubType>
  2759. </Compile>
  2760. <Compile Include="customermanage\personmodify.aspx.designer.cs">
  2761. <DependentUpon>personmodify.aspx</DependentUpon>
  2762. </Compile>
  2763. <Compile Include="customermanage\regionlist.aspx.cs">
  2764. <DependentUpon>regionlist.aspx</DependentUpon>
  2765. <SubType>ASPXCodeBehind</SubType>
  2766. </Compile>
  2767. <Compile Include="customermanage\regionlist.aspx.designer.cs">
  2768. <DependentUpon>regionlist.aspx</DependentUpon>
  2769. </Compile>
  2770. <Compile Include="default.aspx.cs">
  2771. <DependentUpon>default.aspx</DependentUpon>
  2772. <SubType>ASPXCodeBehind</SubType>
  2773. </Compile>
  2774. <Compile Include="default.aspx.designer.cs">
  2775. <DependentUpon>default.aspx</DependentUpon>
  2776. </Compile>
  2777. <Compile Include="knowledgemanage\ajax\knowledge.ashx.cs">
  2778. <DependentUpon>knowledge.ashx</DependentUpon>
  2779. </Compile>
  2780. <Compile Include="knowledgemanage\knowledgeclass.aspx.cs">
  2781. <DependentUpon>knowledgeclass.aspx</DependentUpon>
  2782. <SubType>ASPXCodeBehind</SubType>
  2783. </Compile>
  2784. <Compile Include="knowledgemanage\knowledgeclass.aspx.designer.cs">
  2785. <DependentUpon>knowledgeclass.aspx</DependentUpon>
  2786. </Compile>
  2787. <Compile Include="knowledgemanage\knowledgeclassAddandEdit.aspx.cs">
  2788. <DependentUpon>knowledgeclassAddandEdit.aspx</DependentUpon>
  2789. <SubType>ASPXCodeBehind</SubType>
  2790. </Compile>
  2791. <Compile Include="knowledgemanage\knowledgeclassAddandEdit.aspx.designer.cs">
  2792. <DependentUpon>knowledgeclassAddandEdit.aspx</DependentUpon>
  2793. </Compile>
  2794. <Compile Include="knowledgemanage\knowledgelist.aspx.cs">
  2795. <DependentUpon>knowledgelist.aspx</DependentUpon>
  2796. <SubType>ASPXCodeBehind</SubType>
  2797. </Compile>
  2798. <Compile Include="knowledgemanage\knowledgelist.aspx.designer.cs">
  2799. <DependentUpon>knowledgelist.aspx</DependentUpon>
  2800. </Compile>
  2801. <Compile Include="knowledgemanage\knowledgelistAddandEdit.aspx.cs">
  2802. <DependentUpon>knowledgelistAddandEdit.aspx</DependentUpon>
  2803. <SubType>ASPXCodeBehind</SubType>
  2804. </Compile>
  2805. <Compile Include="knowledgemanage\knowledgelistAddandEdit.aspx.designer.cs">
  2806. <DependentUpon>knowledgelistAddandEdit.aspx</DependentUpon>
  2807. </Compile>
  2808. <Compile Include="knowledgemanage\knowledgesearch.aspx.cs">
  2809. <DependentUpon>knowledgesearch.aspx</DependentUpon>
  2810. <SubType>ASPXCodeBehind</SubType>
  2811. </Compile>
  2812. <Compile Include="knowledgemanage\knowledgesearch.aspx.designer.cs">
  2813. <DependentUpon>knowledgesearch.aspx</DependentUpon>
  2814. </Compile>
  2815. <Compile Include="knowledgemanage\knowledgeview.aspx.cs">
  2816. <DependentUpon>knowledgeview.aspx</DependentUpon>
  2817. <SubType>ASPXCodeBehind</SubType>
  2818. </Compile>
  2819. <Compile Include="knowledgemanage\knowledgeview.aspx.designer.cs">
  2820. <DependentUpon>knowledgeview.aspx</DependentUpon>
  2821. </Compile>
  2822. <Compile Include="login.aspx.cs">
  2823. <DependentUpon>login.aspx</DependentUpon>
  2824. <SubType>ASPXCodeBehind</SubType>
  2825. </Compile>
  2826. <Compile Include="login.aspx.designer.cs">
  2827. <DependentUpon>login.aspx</DependentUpon>
  2828. </Compile>
  2829. <Compile Include="outsysurl.aspx.cs">
  2830. <DependentUpon>outsysurl.aspx</DependentUpon>
  2831. <SubType>ASPXCodeBehind</SubType>
  2832. </Compile>
  2833. <Compile Include="outsysurl.aspx.designer.cs">
  2834. <DependentUpon>outsysurl.aspx</DependentUpon>
  2835. </Compile>
  2836. <Compile Include="reportmanage\acceptancereport.aspx.cs">
  2837. <DependentUpon>acceptancereport.aspx</DependentUpon>
  2838. <SubType>ASPXCodeBehind</SubType>
  2839. </Compile>
  2840. <Compile Include="reportmanage\acceptancereport.aspx.designer.cs">
  2841. <DependentUpon>acceptancereport.aspx</DependentUpon>
  2842. </Compile>
  2843. <Compile Include="reportmanage\callerdealreport.aspx.cs">
  2844. <DependentUpon>callerdealreport.aspx</DependentUpon>
  2845. <SubType>ASPXCodeBehind</SubType>
  2846. </Compile>
  2847. <Compile Include="reportmanage\callerdealreport.aspx.designer.cs">
  2848. <DependentUpon>callerdealreport.aspx</DependentUpon>
  2849. </Compile>
  2850. <Compile Include="reportmanage\longwaitreport.aspx.cs">
  2851. <DependentUpon>longwaitreport.aspx</DependentUpon>
  2852. <SubType>ASPXCodeBehind</SubType>
  2853. </Compile>
  2854. <Compile Include="reportmanage\longwaitreport.aspx.designer.cs">
  2855. <DependentUpon>longwaitreport.aspx</DependentUpon>
  2856. </Compile>
  2857. <Compile Include="reportmanage\switchedlosscallreport.aspx.cs">
  2858. <DependentUpon>switchedlosscallreport.aspx</DependentUpon>
  2859. <SubType>ASPXCodeBehind</SubType>
  2860. </Compile>
  2861. <Compile Include="reportmanage\switchedlosscallreport.aspx.designer.cs">
  2862. <DependentUpon>switchedlosscallreport.aspx</DependentUpon>
  2863. </Compile>
  2864. <Compile Include="reportmanage\talktimereport.aspx.cs">
  2865. <DependentUpon>talktimereport.aspx</DependentUpon>
  2866. <SubType>ASPXCodeBehind</SubType>
  2867. </Compile>
  2868. <Compile Include="reportmanage\talktimereport.aspx.designer.cs">
  2869. <DependentUpon>talktimereport.aspx</DependentUpon>
  2870. </Compile>
  2871. <Compile Include="reportmanage\totalcallreport.aspx.cs">
  2872. <DependentUpon>totalcallreport.aspx</DependentUpon>
  2873. <SubType>ASPXCodeBehind</SubType>
  2874. </Compile>
  2875. <Compile Include="reportmanage\totalcallreport.aspx.designer.cs">
  2876. <DependentUpon>totalcallreport.aspx</DependentUpon>
  2877. </Compile>
  2878. <Compile Include="smsmanage\ajax\smsSentAjax.ashx.cs">
  2879. <DependentUpon>smsSentAjax.ashx</DependentUpon>
  2880. </Compile>
  2881. <Compile Include="smsmanage\ajax\SmsSentAlWeiAjax.ashx.cs">
  2882. <DependentUpon>SmsSentAlWeiAjax.ashx</DependentUpon>
  2883. </Compile>
  2884. <Compile Include="smsmanage\ajax\smsTypeListAjax.ashx.cs">
  2885. <DependentUpon>smsTypeListAjax.ashx</DependentUpon>
  2886. </Compile>
  2887. <Compile Include="smsmanage\smsSent.aspx.cs">
  2888. <DependentUpon>smsSent.aspx</DependentUpon>
  2889. <SubType>ASPXCodeBehind</SubType>
  2890. </Compile>
  2891. <Compile Include="smsmanage\smsSent.aspx.designer.cs">
  2892. <DependentUpon>smsSent.aspx</DependentUpon>
  2893. </Compile>
  2894. <Compile Include="smsmanage\SmsSentAlready.aspx.cs">
  2895. <DependentUpon>SmsSentAlready.aspx</DependentUpon>
  2896. <SubType>ASPXCodeBehind</SubType>
  2897. </Compile>
  2898. <Compile Include="smsmanage\SmsSentAlready.aspx.designer.cs">
  2899. <DependentUpon>SmsSentAlready.aspx</DependentUpon>
  2900. </Compile>
  2901. <Compile Include="smsmanage\SmsSentWeiFaSong.aspx.cs">
  2902. <DependentUpon>SmsSentWeiFaSong.aspx</DependentUpon>
  2903. <SubType>ASPXCodeBehind</SubType>
  2904. </Compile>
  2905. <Compile Include="smsmanage\SmsSentWeiFaSong.aspx.designer.cs">
  2906. <DependentUpon>SmsSentWeiFaSong.aspx</DependentUpon>
  2907. </Compile>
  2908. <Compile Include="smsmanage\smsTypeList.aspx.cs">
  2909. <DependentUpon>smsTypeList.aspx</DependentUpon>
  2910. <SubType>ASPXCodeBehind</SubType>
  2911. </Compile>
  2912. <Compile Include="smsmanage\smsTypeList.aspx.designer.cs">
  2913. <DependentUpon>smsTypeList.aspx</DependentUpon>
  2914. </Compile>
  2915. <Compile Include="smsmanage\UserEdit.aspx.cs">
  2916. <DependentUpon>UserEdit.aspx</DependentUpon>
  2917. <SubType>ASPXCodeBehind</SubType>
  2918. </Compile>
  2919. <Compile Include="smsmanage\UserEdit.aspx.designer.cs">
  2920. <DependentUpon>UserEdit.aspx</DependentUpon>
  2921. </Compile>
  2922. <Compile Include="sysmanage\ajax\basedatalistAction.ashx.cs">
  2923. <DependentUpon>basedatalistAction.ashx</DependentUpon>
  2924. </Compile>
  2925. <Compile Include="sysmanage\ajax\calllogs.ashx.cs">
  2926. <DependentUpon>calllogs.ashx</DependentUpon>
  2927. </Compile>
  2928. <Compile Include="sysmanage\ajax\deptcategory.ashx.cs">
  2929. <DependentUpon>deptcategory.ashx</DependentUpon>
  2930. </Compile>
  2931. <Compile Include="sysmanage\ajax\deptListAction.ashx.cs">
  2932. <DependentUpon>deptListAction.ashx</DependentUpon>
  2933. </Compile>
  2934. <Compile Include="sysmanage\ajax\dictionarymanage.ashx.cs">
  2935. <DependentUpon>dictionarymanage.ashx</DependentUpon>
  2936. </Compile>
  2937. <Compile Include="sysmanage\ajax\functionmanage.ashx.cs">
  2938. <DependentUpon>functionmanage.ashx</DependentUpon>
  2939. </Compile>
  2940. <Compile Include="sysmanage\ajax\ligerComboBox.ashx.cs">
  2941. <DependentUpon>ligerComboBox.ashx</DependentUpon>
  2942. </Compile>
  2943. <Compile Include="sysmanage\ajax\loginlogs.ashx.cs">
  2944. <DependentUpon>loginlogs.ashx</DependentUpon>
  2945. </Compile>
  2946. <Compile Include="sysmanage\ajax\optlogs.ashx.cs">
  2947. <DependentUpon>optlogs.ashx</DependentUpon>
  2948. </Compile>
  2949. <Compile Include="sysmanage\ajax\rolelist.ashx.cs">
  2950. <DependentUpon>rolelist.ashx</DependentUpon>
  2951. </Compile>
  2952. <Compile Include="sysmanage\ajax\sysconfigmanage.ashx.cs">
  2953. <DependentUpon>sysconfigmanage.ashx</DependentUpon>
  2954. </Compile>
  2955. <Compile Include="sysmanage\ajax\systemConfigAction.ashx.cs">
  2956. <DependentUpon>systemConfigAction.ashx</DependentUpon>
  2957. </Compile>
  2958. <Compile Include="sysmanage\ajax\UserAjaxList.ashx.cs">
  2959. <DependentUpon>UserAjaxList.ashx</DependentUpon>
  2960. </Compile>
  2961. <Compile Include="sysmanage\basedataedit.aspx.cs">
  2962. <DependentUpon>basedataedit.aspx</DependentUpon>
  2963. <SubType>ASPXCodeBehind</SubType>
  2964. </Compile>
  2965. <Compile Include="sysmanage\basedataedit.aspx.designer.cs">
  2966. <DependentUpon>basedataedit.aspx</DependentUpon>
  2967. </Compile>
  2968. <Compile Include="sysmanage\basedatalist.aspx.cs">
  2969. <DependentUpon>basedatalist.aspx</DependentUpon>
  2970. <SubType>ASPXCodeBehind</SubType>
  2971. </Compile>
  2972. <Compile Include="sysmanage\basedatalist.aspx.designer.cs">
  2973. <DependentUpon>basedatalist.aspx</DependentUpon>
  2974. </Compile>
  2975. <Compile Include="sysmanage\calllogs.aspx.cs">
  2976. <DependentUpon>calllogs.aspx</DependentUpon>
  2977. <SubType>ASPXCodeBehind</SubType>
  2978. </Compile>
  2979. <Compile Include="sysmanage\calllogs.aspx.designer.cs">
  2980. <DependentUpon>calllogs.aspx</DependentUpon>
  2981. </Compile>
  2982. <Compile Include="sysmanage\configedit.aspx.cs">
  2983. <DependentUpon>configedit.aspx</DependentUpon>
  2984. <SubType>ASPXCodeBehind</SubType>
  2985. </Compile>
  2986. <Compile Include="sysmanage\configedit.aspx.designer.cs">
  2987. <DependentUpon>configedit.aspx</DependentUpon>
  2988. </Compile>
  2989. <Compile Include="sysmanage\configlist.aspx.cs">
  2990. <DependentUpon>configlist.aspx</DependentUpon>
  2991. <SubType>ASPXCodeBehind</SubType>
  2992. </Compile>
  2993. <Compile Include="sysmanage\configlist.aspx.designer.cs">
  2994. <DependentUpon>configlist.aspx</DependentUpon>
  2995. </Compile>
  2996. <Compile Include="sysmanage\deptdeit.aspx.cs">
  2997. <DependentUpon>deptdeit.aspx</DependentUpon>
  2998. <SubType>ASPXCodeBehind</SubType>
  2999. </Compile>
  3000. <Compile Include="sysmanage\deptdeit.aspx.designer.cs">
  3001. <DependentUpon>deptdeit.aspx</DependentUpon>
  3002. </Compile>
  3003. <Compile Include="sysmanage\deptlist.aspx.cs">
  3004. <DependentUpon>deptlist.aspx</DependentUpon>
  3005. <SubType>ASPXCodeBehind</SubType>
  3006. </Compile>
  3007. <Compile Include="sysmanage\deptlist.aspx.designer.cs">
  3008. <DependentUpon>deptlist.aspx</DependentUpon>
  3009. </Compile>
  3010. <Compile Include="sysmanage\DeptlistAddandEdit.aspx.cs">
  3011. <DependentUpon>DeptlistAddandEdit.aspx</DependentUpon>
  3012. <SubType>ASPXCodeBehind</SubType>
  3013. </Compile>
  3014. <Compile Include="sysmanage\DeptlistAddandEdit.aspx.designer.cs">
  3015. <DependentUpon>DeptlistAddandEdit.aspx</DependentUpon>
  3016. </Compile>
  3017. <Compile Include="sysmanage\dictionarylistedit.aspx.cs">
  3018. <DependentUpon>dictionarylistedit.aspx</DependentUpon>
  3019. <SubType>ASPXCodeBehind</SubType>
  3020. </Compile>
  3021. <Compile Include="sysmanage\dictionarylistedit.aspx.designer.cs">
  3022. <DependentUpon>dictionarylistedit.aspx</DependentUpon>
  3023. </Compile>
  3024. <Compile Include="sysmanage\dictionarymanage.aspx.cs">
  3025. <DependentUpon>dictionarymanage.aspx</DependentUpon>
  3026. <SubType>ASPXCodeBehind</SubType>
  3027. </Compile>
  3028. <Compile Include="sysmanage\dictionarymanage.aspx.designer.cs">
  3029. <DependentUpon>dictionarymanage.aspx</DependentUpon>
  3030. </Compile>
  3031. <Compile Include="sysmanage\dictionarytreeedit.aspx.cs">
  3032. <DependentUpon>dictionarytreeedit.aspx</DependentUpon>
  3033. <SubType>ASPXCodeBehind</SubType>
  3034. </Compile>
  3035. <Compile Include="sysmanage\dictionarytreeedit.aspx.designer.cs">
  3036. <DependentUpon>dictionarytreeedit.aspx</DependentUpon>
  3037. </Compile>
  3038. <Compile Include="sysmanage\functionanniuedit.aspx.cs">
  3039. <DependentUpon>functionanniuedit.aspx</DependentUpon>
  3040. <SubType>ASPXCodeBehind</SubType>
  3041. </Compile>
  3042. <Compile Include="sysmanage\functionanniuedit.aspx.designer.cs">
  3043. <DependentUpon>functionanniuedit.aspx</DependentUpon>
  3044. </Compile>
  3045. <Compile Include="sysmanage\functionmanage.aspx.cs">
  3046. <DependentUpon>functionmanage.aspx</DependentUpon>
  3047. <SubType>ASPXCodeBehind</SubType>
  3048. </Compile>
  3049. <Compile Include="sysmanage\functionmanage.aspx.designer.cs">
  3050. <DependentUpon>functionmanage.aspx</DependentUpon>
  3051. </Compile>
  3052. <Compile Include="sysmanage\functiontreeedit.aspx.cs">
  3053. <DependentUpon>functiontreeedit.aspx</DependentUpon>
  3054. <SubType>ASPXCodeBehind</SubType>
  3055. </Compile>
  3056. <Compile Include="sysmanage\functiontreeedit.aspx.designer.cs">
  3057. <DependentUpon>functiontreeedit.aspx</DependentUpon>
  3058. </Compile>
  3059. <Compile Include="sysmanage\loginlogs.aspx.cs">
  3060. <DependentUpon>loginlogs.aspx</DependentUpon>
  3061. <SubType>ASPXCodeBehind</SubType>
  3062. </Compile>
  3063. <Compile Include="sysmanage\loginlogs.aspx.designer.cs">
  3064. <DependentUpon>loginlogs.aspx</DependentUpon>
  3065. </Compile>
  3066. <Compile Include="sysmanage\optlogs.aspx.cs">
  3067. <DependentUpon>optlogs.aspx</DependentUpon>
  3068. <SubType>ASPXCodeBehind</SubType>
  3069. </Compile>
  3070. <Compile Include="sysmanage\optlogs.aspx.designer.cs">
  3071. <DependentUpon>optlogs.aspx</DependentUpon>
  3072. </Compile>
  3073. <Compile Include="sysmanage\ResetPassword.aspx.cs">
  3074. <DependentUpon>ResetPassword.aspx</DependentUpon>
  3075. <SubType>ASPXCodeBehind</SubType>
  3076. </Compile>
  3077. <Compile Include="sysmanage\ResetPassword.aspx.designer.cs">
  3078. <DependentUpon>ResetPassword.aspx</DependentUpon>
  3079. </Compile>
  3080. <Compile Include="sysmanage\rolelist.aspx.cs">
  3081. <DependentUpon>rolelist.aspx</DependentUpon>
  3082. <SubType>ASPXCodeBehind</SubType>
  3083. </Compile>
  3084. <Compile Include="sysmanage\rolelist.aspx.designer.cs">
  3085. <DependentUpon>rolelist.aspx</DependentUpon>
  3086. </Compile>
  3087. <Compile Include="sysmanage\rolelistedit.aspx.cs">
  3088. <DependentUpon>rolelistedit.aspx</DependentUpon>
  3089. <SubType>ASPXCodeBehind</SubType>
  3090. </Compile>
  3091. <Compile Include="sysmanage\rolelistedit.aspx.designer.cs">
  3092. <DependentUpon>rolelistedit.aspx</DependentUpon>
  3093. </Compile>
  3094. <Compile Include="sysmanage\sysconfigedit.aspx.cs">
  3095. <DependentUpon>sysconfigedit.aspx</DependentUpon>
  3096. <SubType>ASPXCodeBehind</SubType>
  3097. </Compile>
  3098. <Compile Include="sysmanage\sysconfigedit.aspx.designer.cs">
  3099. <DependentUpon>sysconfigedit.aspx</DependentUpon>
  3100. </Compile>
  3101. <Compile Include="sysmanage\sysconfigmanage.aspx.cs">
  3102. <DependentUpon>sysconfigmanage.aspx</DependentUpon>
  3103. <SubType>ASPXCodeBehind</SubType>
  3104. </Compile>
  3105. <Compile Include="sysmanage\sysconfigmanage.aspx.designer.cs">
  3106. <DependentUpon>sysconfigmanage.aspx</DependentUpon>
  3107. </Compile>
  3108. <Compile Include="sysmanage\userAllocationRole.aspx.cs">
  3109. <DependentUpon>userAllocationRole.aspx</DependentUpon>
  3110. <SubType>ASPXCodeBehind</SubType>
  3111. </Compile>
  3112. <Compile Include="sysmanage\userAllocationRole.aspx.designer.cs">
  3113. <DependentUpon>userAllocationRole.aspx</DependentUpon>
  3114. </Compile>
  3115. <Compile Include="sysmanage\useredit.aspx.cs">
  3116. <DependentUpon>useredit.aspx</DependentUpon>
  3117. <SubType>ASPXCodeBehind</SubType>
  3118. </Compile>
  3119. <Compile Include="sysmanage\useredit.aspx.designer.cs">
  3120. <DependentUpon>useredit.aspx</DependentUpon>
  3121. </Compile>
  3122. <Compile Include="sysmanage\userlist.aspx.cs">
  3123. <DependentUpon>userlist.aspx</DependentUpon>
  3124. <SubType>ASPXCodeBehind</SubType>
  3125. </Compile>
  3126. <Compile Include="sysmanage\userlist.aspx.designer.cs">
  3127. <DependentUpon>userlist.aspx</DependentUpon>
  3128. </Compile>
  3129. <Compile Include="pagenull.aspx.cs">
  3130. <DependentUpon>pagenull.aspx</DependentUpon>
  3131. <SubType>ASPXCodeBehind</SubType>
  3132. </Compile>
  3133. <Compile Include="pagenull.aspx.designer.cs">
  3134. <DependentUpon>pagenull.aspx</DependentUpon>
  3135. </Compile>
  3136. <Compile Include="Properties\AssemblyInfo.cs" />
  3137. <Compile Include="sysmanage\usermodify.aspx.cs">
  3138. <DependentUpon>usermodify.aspx</DependentUpon>
  3139. <SubType>ASPXCodeBehind</SubType>
  3140. </Compile>
  3141. <Compile Include="sysmanage\usermodify.aspx.designer.cs">
  3142. <DependentUpon>usermodify.aspx</DependentUpon>
  3143. </Compile>
  3144. <Compile Include="sysmanage\userResetPasswod.aspx.cs">
  3145. <DependentUpon>userResetPasswod.aspx</DependentUpon>
  3146. <SubType>ASPXCodeBehind</SubType>
  3147. </Compile>
  3148. <Compile Include="sysmanage\userResetPasswod.aspx.designer.cs">
  3149. <DependentUpon>userResetPasswod.aspx</DependentUpon>
  3150. </Compile>
  3151. <Compile Include="telmanage\ajax\callblack.ashx.cs">
  3152. <DependentUpon>callblack.ashx</DependentUpon>
  3153. </Compile>
  3154. <Compile Include="telmanage\ajax\callleavelist.ashx.cs">
  3155. <DependentUpon>callleavelist.ashx</DependentUpon>
  3156. </Compile>
  3157. <Compile Include="telmanage\ajax\customeropt.ashx.cs">
  3158. <DependentUpon>customeropt.ashx</DependentUpon>
  3159. </Compile>
  3160. <Compile Include="telmanage\ajax\mobiledatalist.ashx.cs">
  3161. <DependentUpon>mobiledatalist.ashx</DependentUpon>
  3162. </Compile>
  3163. <Compile Include="telmanage\ajax\seatmonitoring.ashx.cs">
  3164. <DependentUpon>seatmonitoring.ashx</DependentUpon>
  3165. </Compile>
  3166. <Compile Include="telmanage\ajax\selectuser.ashx.cs">
  3167. <DependentUpon>selectuser.ashx</DependentUpon>
  3168. </Compile>
  3169. <Compile Include="telmanage\ajax\telrecords.ashx.cs">
  3170. <DependentUpon>telrecords.ashx</DependentUpon>
  3171. </Compile>
  3172. <Compile Include="telmanage\callblacklist.aspx.cs">
  3173. <DependentUpon>callblacklist.aspx</DependentUpon>
  3174. <SubType>ASPXCodeBehind</SubType>
  3175. </Compile>
  3176. <Compile Include="telmanage\callblacklist.aspx.designer.cs">
  3177. <DependentUpon>callblacklist.aspx</DependentUpon>
  3178. </Compile>
  3179. <Compile Include="telmanage\callblacklisteditor.aspx.cs">
  3180. <DependentUpon>callblacklisteditor.aspx</DependentUpon>
  3181. <SubType>ASPXCodeBehind</SubType>
  3182. </Compile>
  3183. <Compile Include="telmanage\callblacklisteditor.aspx.designer.cs">
  3184. <DependentUpon>callblacklisteditor.aspx</DependentUpon>
  3185. </Compile>
  3186. <Compile Include="telmanage\callinopt.aspx.cs">
  3187. <DependentUpon>callinopt.aspx</DependentUpon>
  3188. <SubType>ASPXCodeBehind</SubType>
  3189. </Compile>
  3190. <Compile Include="telmanage\callinopt.aspx.designer.cs">
  3191. <DependentUpon>callinopt.aspx</DependentUpon>
  3192. </Compile>
  3193. <Compile Include="telmanage\callleavelist.aspx.cs">
  3194. <DependentUpon>callleavelist.aspx</DependentUpon>
  3195. <SubType>ASPXCodeBehind</SubType>
  3196. </Compile>
  3197. <Compile Include="telmanage\callleavelist.aspx.designer.cs">
  3198. <DependentUpon>callleavelist.aspx</DependentUpon>
  3199. </Compile>
  3200. <Compile Include="telmanage\calloutopt.aspx.cs">
  3201. <DependentUpon>calloutopt.aspx</DependentUpon>
  3202. <SubType>ASPXCodeBehind</SubType>
  3203. </Compile>
  3204. <Compile Include="telmanage\calloutopt.aspx.designer.cs">
  3205. <DependentUpon>calloutopt.aspx</DependentUpon>
  3206. </Compile>
  3207. <Compile Include="telmanage\callrecordlist.aspx.cs">
  3208. <DependentUpon>callrecordlist.aspx</DependentUpon>
  3209. <SubType>ASPXCodeBehind</SubType>
  3210. </Compile>
  3211. <Compile Include="telmanage\callrecordlist.aspx.designer.cs">
  3212. <DependentUpon>callrecordlist.aspx</DependentUpon>
  3213. </Compile>
  3214. <Compile Include="telmanage\callvoicelist.aspx.cs">
  3215. <DependentUpon>callvoicelist.aspx</DependentUpon>
  3216. <SubType>ASPXCodeBehind</SubType>
  3217. </Compile>
  3218. <Compile Include="telmanage\callvoicelist.aspx.designer.cs">
  3219. <DependentUpon>callvoicelist.aspx</DependentUpon>
  3220. </Compile>
  3221. <Compile Include="telmanage\mobiledatalist.aspx.cs">
  3222. <DependentUpon>mobiledatalist.aspx</DependentUpon>
  3223. <SubType>ASPXCodeBehind</SubType>
  3224. </Compile>
  3225. <Compile Include="telmanage\mobiledatalist.aspx.designer.cs">
  3226. <DependentUpon>mobiledatalist.aspx</DependentUpon>
  3227. </Compile>
  3228. <Compile Include="telmanage\mobiledatalistAddandEdit.aspx.cs">
  3229. <DependentUpon>mobiledatalistAddandEdit.aspx</DependentUpon>
  3230. <SubType>ASPXCodeBehind</SubType>
  3231. </Compile>
  3232. <Compile Include="telmanage\mobiledatalistAddandEdit.aspx.designer.cs">
  3233. <DependentUpon>mobiledatalistAddandEdit.aspx</DependentUpon>
  3234. </Compile>
  3235. <Compile Include="telmanage\seatmonitoring.aspx.cs">
  3236. <DependentUpon>seatmonitoring.aspx</DependentUpon>
  3237. <SubType>ASPXCodeBehind</SubType>
  3238. </Compile>
  3239. <Compile Include="telmanage\seatmonitoring.aspx.designer.cs">
  3240. <DependentUpon>seatmonitoring.aspx</DependentUpon>
  3241. </Compile>
  3242. <Compile Include="telmanage\selectcallcustomer.aspx.cs">
  3243. <DependentUpon>selectcallcustomer.aspx</DependentUpon>
  3244. <SubType>ASPXCodeBehind</SubType>
  3245. </Compile>
  3246. <Compile Include="telmanage\selectcallcustomer.aspx.designer.cs">
  3247. <DependentUpon>selectcallcustomer.aspx</DependentUpon>
  3248. </Compile>
  3249. <Compile Include="telmanage\selectcallrecord.aspx.cs">
  3250. <DependentUpon>selectcallrecord.aspx</DependentUpon>
  3251. <SubType>ASPXCodeBehind</SubType>
  3252. </Compile>
  3253. <Compile Include="telmanage\selectcallrecord.aspx.designer.cs">
  3254. <DependentUpon>selectcallrecord.aspx</DependentUpon>
  3255. </Compile>
  3256. <Compile Include="telmanage\selectcalluser.aspx.cs">
  3257. <DependentUpon>selectcalluser.aspx</DependentUpon>
  3258. <SubType>ASPXCodeBehind</SubType>
  3259. </Compile>
  3260. <Compile Include="telmanage\selectcalluser.aspx.designer.cs">
  3261. <DependentUpon>selectcalluser.aspx</DependentUpon>
  3262. </Compile>
  3263. <Compile Include="telmanage\selectcustomer.aspx.cs">
  3264. <DependentUpon>selectcustomer.aspx</DependentUpon>
  3265. <SubType>ASPXCodeBehind</SubType>
  3266. </Compile>
  3267. <Compile Include="telmanage\selectcustomer.aspx.designer.cs">
  3268. <DependentUpon>selectcustomer.aspx</DependentUpon>
  3269. </Compile>
  3270. <Compile Include="telmanage\selectdept.aspx.cs">
  3271. <DependentUpon>selectdept.aspx</DependentUpon>
  3272. <SubType>ASPXCodeBehind</SubType>
  3273. </Compile>
  3274. <Compile Include="telmanage\selectdept.aspx.designer.cs">
  3275. <DependentUpon>selectdept.aspx</DependentUpon>
  3276. </Compile>
  3277. <Compile Include="telmanage\selectdeptuser.aspx.cs">
  3278. <DependentUpon>selectdeptuser.aspx</DependentUpon>
  3279. <SubType>ASPXCodeBehind</SubType>
  3280. </Compile>
  3281. <Compile Include="telmanage\selectdeptuser.aspx.designer.cs">
  3282. <DependentUpon>selectdeptuser.aspx</DependentUpon>
  3283. </Compile>
  3284. <Compile Include="telmanage\shiftchange.aspx.cs">
  3285. <DependentUpon>shiftchange.aspx</DependentUpon>
  3286. <SubType>ASPXCodeBehind</SubType>
  3287. </Compile>
  3288. <Compile Include="telmanage\shiftchange.aspx.designer.cs">
  3289. <DependentUpon>shiftchange.aspx</DependentUpon>
  3290. </Compile>
  3291. <Compile Include="telmanage\voiceplay.aspx.cs">
  3292. <DependentUpon>voiceplay.aspx</DependentUpon>
  3293. <SubType>ASPXCodeBehind</SubType>
  3294. </Compile>
  3295. <Compile Include="telmanage\voiceplay.aspx.designer.cs">
  3296. <DependentUpon>voiceplay.aspx</DependentUpon>
  3297. </Compile>
  3298. <Compile Include="tools\basedata.ashx.cs">
  3299. <DependentUpon>basedata.ashx</DependentUpon>
  3300. </Compile>
  3301. <Compile Include="tools\BasePage.cs">
  3302. <SubType>ASPXCodeBehind</SubType>
  3303. </Compile>
  3304. <Compile Include="tools\verify_code.ashx.cs">
  3305. <DependentUpon>verify_code.ashx</DependentUpon>
  3306. </Compile>
  3307. <Compile Include="workordermanage\ajax\CommonDataList.ashx.cs">
  3308. <DependentUpon>CommonDataList.ashx</DependentUpon>
  3309. </Compile>
  3310. <Compile Include="workordermanage\ajax\WorkalarmmangeAjax.ashx.cs">
  3311. <DependentUpon>WorkalarmmangeAjax.ashx</DependentUpon>
  3312. </Compile>
  3313. <Compile Include="workordermanage\ajax\Workbuttonmanageajax.ashx.cs">
  3314. <DependentUpon>Workbuttonmanageajax.ashx</DependentUpon>
  3315. </Compile>
  3316. <Compile Include="workordermanage\ajax\workflowmanageajax.ashx.cs">
  3317. <DependentUpon>workflowmanageajax.ashx</DependentUpon>
  3318. </Compile>
  3319. <Compile Include="workordermanage\ajax\workorderDCLList.ashx.cs">
  3320. <DependentUpon>workorderDCLList.ashx</DependentUpon>
  3321. </Compile>
  3322. <Compile Include="workordermanage\ajax\WorkOrderStateAjax.ashx.cs">
  3323. <DependentUpon>WorkOrderStateAjax.ashx</DependentUpon>
  3324. </Compile>
  3325. <Compile Include="workordermanage\ajax\workorderstatelist.ashx.cs">
  3326. <DependentUpon>workorderstatelist.ashx</DependentUpon>
  3327. </Compile>
  3328. <Compile Include="workordermanage\ajax\WorkTypeManageAjax.ashx.cs">
  3329. <DependentUpon>WorkTypeManageAjax.ashx</DependentUpon>
  3330. </Compile>
  3331. <Compile Include="workordermanage\workorderset\alamangeStateEdit.aspx.cs">
  3332. <DependentUpon>alamangeStateEdit.aspx</DependentUpon>
  3333. <SubType>ASPXCodeBehind</SubType>
  3334. </Compile>
  3335. <Compile Include="workordermanage\workorderset\alamangeStateEdit.aspx.designer.cs">
  3336. <DependentUpon>alamangeStateEdit.aspx</DependentUpon>
  3337. </Compile>
  3338. <Compile Include="workordermanage\workorderset\alarmmanage.aspx.cs">
  3339. <DependentUpon>alarmmanage.aspx</DependentUpon>
  3340. <SubType>ASPXCodeBehind</SubType>
  3341. </Compile>
  3342. <Compile Include="workordermanage\workorderset\alarmmanage.aspx.designer.cs">
  3343. <DependentUpon>alarmmanage.aspx</DependentUpon>
  3344. </Compile>
  3345. <Compile Include="workordermanage\workorderset\alarmmangeTypeEdit.aspx.cs">
  3346. <DependentUpon>alarmmangeTypeEdit.aspx</DependentUpon>
  3347. <SubType>ASPXCodeBehind</SubType>
  3348. </Compile>
  3349. <Compile Include="workordermanage\workorderset\alarmmangeTypeEdit.aspx.designer.cs">
  3350. <DependentUpon>alarmmangeTypeEdit.aspx</DependentUpon>
  3351. </Compile>
  3352. <Compile Include="workordermanage\workorderset\orderstatemanage.aspx.cs">
  3353. <DependentUpon>orderstatemanage.aspx</DependentUpon>
  3354. <SubType>ASPXCodeBehind</SubType>
  3355. </Compile>
  3356. <Compile Include="workordermanage\workorderset\orderstatemanage.aspx.designer.cs">
  3357. <DependentUpon>orderstatemanage.aspx</DependentUpon>
  3358. </Compile>
  3359. <Compile Include="workordermanage\workorderset\ordertypemanage.aspx.cs">
  3360. <DependentUpon>ordertypemanage.aspx</DependentUpon>
  3361. <SubType>ASPXCodeBehind</SubType>
  3362. </Compile>
  3363. <Compile Include="workordermanage\workorderset\ordertypemanage.aspx.designer.cs">
  3364. <DependentUpon>ordertypemanage.aspx</DependentUpon>
  3365. </Compile>
  3366. <Compile Include="workordermanage\workorderset\ordertypemanageedit.aspx.cs">
  3367. <DependentUpon>ordertypemanageedit.aspx</DependentUpon>
  3368. <SubType>ASPXCodeBehind</SubType>
  3369. </Compile>
  3370. <Compile Include="workordermanage\workorderset\ordertypemanageedit.aspx.designer.cs">
  3371. <DependentUpon>ordertypemanageedit.aspx</DependentUpon>
  3372. </Compile>
  3373. <Compile Include="workordermanage\workorderset\workbuttonmanage.aspx.cs">
  3374. <DependentUpon>workbuttonmanage.aspx</DependentUpon>
  3375. <SubType>ASPXCodeBehind</SubType>
  3376. </Compile>
  3377. <Compile Include="workordermanage\workorderset\workbuttonmanage.aspx.designer.cs">
  3378. <DependentUpon>workbuttonmanage.aspx</DependentUpon>
  3379. </Compile>
  3380. <Compile Include="workordermanage\workorderset\workbuttonmanageEdit.aspx.cs">
  3381. <DependentUpon>workbuttonmanageEdit.aspx</DependentUpon>
  3382. <SubType>ASPXCodeBehind</SubType>
  3383. </Compile>
  3384. <Compile Include="workordermanage\workorderset\workbuttonmanageEdit.aspx.designer.cs">
  3385. <DependentUpon>workbuttonmanageEdit.aspx</DependentUpon>
  3386. </Compile>
  3387. <Compile Include="workordermanage\workorderset\workChuLiInfomarger.aspx.cs">
  3388. <DependentUpon>workChuLiInfomarger.aspx</DependentUpon>
  3389. <SubType>ASPXCodeBehind</SubType>
  3390. </Compile>
  3391. <Compile Include="workordermanage\workorderset\workChuLiInfomarger.aspx.designer.cs">
  3392. <DependentUpon>workChuLiInfomarger.aspx</DependentUpon>
  3393. </Compile>
  3394. <Compile Include="workordermanage\workorderset\workflowEdit.aspx.cs">
  3395. <DependentUpon>workflowEdit.aspx</DependentUpon>
  3396. <SubType>ASPXCodeBehind</SubType>
  3397. </Compile>
  3398. <Compile Include="workordermanage\workorderset\workflowEdit.aspx.designer.cs">
  3399. <DependentUpon>workflowEdit.aspx</DependentUpon>
  3400. </Compile>
  3401. <Compile Include="workordermanage\workorderset\workflowmanage.aspx.cs">
  3402. <DependentUpon>workflowmanage.aspx</DependentUpon>
  3403. <SubType>ASPXCodeBehind</SubType>
  3404. </Compile>
  3405. <Compile Include="workordermanage\workorderset\workflowmanage.aspx.designer.cs">
  3406. <DependentUpon>workflowmanage.aspx</DependentUpon>
  3407. </Compile>
  3408. <Compile Include="workordermanage\workorderset\workorderDCLList.aspx.cs">
  3409. <DependentUpon>workorderDCLList.aspx</DependentUpon>
  3410. <SubType>ASPXCodeBehind</SubType>
  3411. </Compile>
  3412. <Compile Include="workordermanage\workorderset\workorderDCLList.aspx.designer.cs">
  3413. <DependentUpon>workorderDCLList.aspx</DependentUpon>
  3414. </Compile>
  3415. <Compile Include="workordermanage\workorderset\workOrderDGDList.aspx.cs">
  3416. <DependentUpon>workOrderDGDList.aspx</DependentUpon>
  3417. <SubType>ASPXCodeBehind</SubType>
  3418. </Compile>
  3419. <Compile Include="workordermanage\workorderset\workOrderDGDList.aspx.designer.cs">
  3420. <DependentUpon>workOrderDGDList.aspx</DependentUpon>
  3421. </Compile>
  3422. <Compile Include="workordermanage\workorderset\workOrderGDZHCXList.aspx.cs">
  3423. <DependentUpon>workOrderGDZHCXList.aspx</DependentUpon>
  3424. <SubType>ASPXCodeBehind</SubType>
  3425. </Compile>
  3426. <Compile Include="workordermanage\workorderset\workOrderGDZHCXList.aspx.designer.cs">
  3427. <DependentUpon>workOrderGDZHCXList.aspx</DependentUpon>
  3428. </Compile>
  3429. <Compile Include="workordermanage\workorderset\WorkOrderInfo.aspx.cs">
  3430. <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
  3431. <SubType>ASPXCodeBehind</SubType>
  3432. </Compile>
  3433. <Compile Include="workordermanage\workorderset\WorkOrderInfo.aspx.designer.cs">
  3434. <DependentUpon>WorkOrderInfo.aspx</DependentUpon>
  3435. </Compile>
  3436. <Compile Include="workordermanage\workorderset\WorkorderStateEdit.aspx.cs">
  3437. <DependentUpon>WorkorderStateEdit.aspx</DependentUpon>
  3438. <SubType>ASPXCodeBehind</SubType>
  3439. </Compile>
  3440. <Compile Include="workordermanage\workorderset\WorkorderStateEdit.aspx.designer.cs">
  3441. <DependentUpon>WorkorderStateEdit.aspx</DependentUpon>
  3442. </Compile>
  3443. <Compile Include="workordermanage\workorderset\workOrderYCLList.aspx.cs">
  3444. <DependentUpon>workOrderYCLList.aspx</DependentUpon>
  3445. <SubType>ASPXCodeBehind</SubType>
  3446. </Compile>
  3447. <Compile Include="workordermanage\workorderset\workOrderYCLList.aspx.designer.cs">
  3448. <DependentUpon>workOrderYCLList.aspx</DependentUpon>
  3449. </Compile>
  3450. <Compile Include="workordermanage\workorderset\workOrderYWJList.aspx.cs">
  3451. <DependentUpon>workOrderYWJList.aspx</DependentUpon>
  3452. <SubType>ASPXCodeBehind</SubType>
  3453. </Compile>
  3454. <Compile Include="workordermanage\workorderset\workOrderYWJList.aspx.designer.cs">
  3455. <DependentUpon>workOrderYWJList.aspx</DependentUpon>
  3456. </Compile>
  3457. <Compile Include="workordermanage\workorder\AssembleWorkFlowTask.cs" />
  3458. <Compile Include="workordermanage\workorder\orderassign.aspx.cs">
  3459. <DependentUpon>orderassign.aspx</DependentUpon>
  3460. <SubType>ASPXCodeBehind</SubType>
  3461. </Compile>
  3462. <Compile Include="workordermanage\workorder\orderassign.aspx.designer.cs">
  3463. <DependentUpon>orderassign.aspx</DependentUpon>
  3464. </Compile>
  3465. <Compile Include="workordermanage\workorder\orderchuli.aspx.cs">
  3466. <DependentUpon>orderchuli.aspx</DependentUpon>
  3467. <SubType>ASPXCodeBehind</SubType>
  3468. </Compile>
  3469. <Compile Include="workordermanage\workorder\orderchuli.aspx.designer.cs">
  3470. <DependentUpon>orderchuli.aspx</DependentUpon>
  3471. </Compile>
  3472. <Compile Include="workordermanage\workorder\orderhuifu.aspx.cs">
  3473. <DependentUpon>orderhuifu.aspx</DependentUpon>
  3474. <SubType>ASPXCodeBehind</SubType>
  3475. </Compile>
  3476. <Compile Include="workordermanage\workorder\orderhuifu.aspx.designer.cs">
  3477. <DependentUpon>orderhuifu.aspx</DependentUpon>
  3478. </Compile>
  3479. <Compile Include="workordermanage\workorder\orderjieshu.aspx.cs">
  3480. <DependentUpon>orderjieshu.aspx</DependentUpon>
  3481. <SubType>ASPXCodeBehind</SubType>
  3482. </Compile>
  3483. <Compile Include="workordermanage\workorder\orderjieshu.aspx.designer.cs">
  3484. <DependentUpon>orderjieshu.aspx</DependentUpon>
  3485. </Compile>
  3486. <Compile Include="workordermanage\workorder\orderreply.aspx.cs">
  3487. <DependentUpon>orderreply.aspx</DependentUpon>
  3488. <SubType>ASPXCodeBehind</SubType>
  3489. </Compile>
  3490. <Compile Include="workordermanage\workorder\orderreply.aspx.designer.cs">
  3491. <DependentUpon>orderreply.aspx</DependentUpon>
  3492. </Compile>
  3493. <Compile Include="workordermanage\workorder\ParseWorkFlowTask.cs" />
  3494. <Compile Include="workordermanage\workorder\selectfinishuser.aspx.cs">
  3495. <DependentUpon>selectfinishuser.aspx</DependentUpon>
  3496. <SubType>ASPXCodeBehind</SubType>
  3497. </Compile>
  3498. <Compile Include="workordermanage\workorder\selectfinishuser.aspx.designer.cs">
  3499. <DependentUpon>selectfinishuser.aspx</DependentUpon>
  3500. </Compile>
  3501. <Compile Include="workordermanage\workorder\woekorderDCLedit.aspx.cs">
  3502. <DependentUpon>woekorderDCLedit.aspx</DependentUpon>
  3503. <SubType>ASPXCodeBehind</SubType>
  3504. </Compile>
  3505. <Compile Include="workordermanage\workorder\woekorderDCLedit.aspx.designer.cs">
  3506. <DependentUpon>woekorderDCLedit.aspx</DependentUpon>
  3507. </Compile>
  3508. <Compile Include="workordermanage\workorder\workorderchuliInfo.aspx.cs">
  3509. <DependentUpon>workorderchuliInfo.aspx</DependentUpon>
  3510. <SubType>ASPXCodeBehind</SubType>
  3511. </Compile>
  3512. <Compile Include="workordermanage\workorder\workorderchuliInfo.aspx.designer.cs">
  3513. <DependentUpon>workorderchuliInfo.aspx</DependentUpon>
  3514. </Compile>
  3515. <Compile Include="workordermanage\workorder\workorderDCLList.aspx.cs">
  3516. <DependentUpon>workorderDCLList.aspx</DependentUpon>
  3517. <SubType>ASPXCodeBehind</SubType>
  3518. </Compile>
  3519. <Compile Include="workordermanage\workorder\workorderDCLList.aspx.designer.cs">
  3520. <DependentUpon>workorderDCLList.aspx</DependentUpon>
  3521. </Compile>
  3522. <Compile Include="workordermanage\workorder\workorderdetail.aspx.cs">
  3523. <DependentUpon>workorderdetail.aspx</DependentUpon>
  3524. <SubType>ASPXCodeBehind</SubType>
  3525. </Compile>
  3526. <Compile Include="workordermanage\workorder\workorderdetail.aspx.designer.cs">
  3527. <DependentUpon>workorderdetail.aspx</DependentUpon>
  3528. </Compile>
  3529. <Compile Include="workordermanage\workorder\workorderDGDList.aspx.cs">
  3530. <DependentUpon>workorderDGDList.aspx</DependentUpon>
  3531. <SubType>ASPXCodeBehind</SubType>
  3532. </Compile>
  3533. <Compile Include="workordermanage\workorder\workorderDGDList.aspx.designer.cs">
  3534. <DependentUpon>workorderDGDList.aspx</DependentUpon>
  3535. </Compile>
  3536. <Compile Include="workordermanage\workorder\workorderGDZHCXList.aspx.cs">
  3537. <DependentUpon>workorderGDZHCXList.aspx</DependentUpon>
  3538. <SubType>ASPXCodeBehind</SubType>
  3539. </Compile>
  3540. <Compile Include="workordermanage\workorder\workorderGDZHCXList.aspx.designer.cs">
  3541. <DependentUpon>workorderGDZHCXList.aspx</DependentUpon>
  3542. </Compile>
  3543. <Compile Include="workordermanage\workorder\workorderInfo.aspx.cs">
  3544. <DependentUpon>workorderInfo.aspx</DependentUpon>
  3545. <SubType>ASPXCodeBehind</SubType>
  3546. </Compile>
  3547. <Compile Include="workordermanage\workorder\workorderInfo.aspx.designer.cs">
  3548. <DependentUpon>workorderInfo.aspx</DependentUpon>
  3549. </Compile>
  3550. <Compile Include="workordermanage\workorder\workordernew.aspx.cs">
  3551. <DependentUpon>workordernew.aspx</DependentUpon>
  3552. <SubType>ASPXCodeBehind</SubType>
  3553. </Compile>
  3554. <Compile Include="workordermanage\workorder\workordernew.aspx.designer.cs">
  3555. <DependentUpon>workordernew.aspx</DependentUpon>
  3556. </Compile>
  3557. <Compile Include="workordermanage\workorder\workordershow.aspx.cs">
  3558. <DependentUpon>workordershow.aspx</DependentUpon>
  3559. <SubType>ASPXCodeBehind</SubType>
  3560. </Compile>
  3561. <Compile Include="workordermanage\workorder\workordershow.aspx.designer.cs">
  3562. <DependentUpon>workordershow.aspx</DependentUpon>
  3563. </Compile>
  3564. <Compile Include="workordermanage\workorder\workorderYCLList.aspx.cs">
  3565. <DependentUpon>workorderYCLList.aspx</DependentUpon>
  3566. <SubType>ASPXCodeBehind</SubType>
  3567. </Compile>
  3568. <Compile Include="workordermanage\workorder\workorderYCLList.aspx.designer.cs">
  3569. <DependentUpon>workorderYCLList.aspx</DependentUpon>
  3570. </Compile>
  3571. <Compile Include="workordermanage\workorder\workorderYWJList.aspx.cs">
  3572. <DependentUpon>workorderYWJList.aspx</DependentUpon>
  3573. <SubType>ASPXCodeBehind</SubType>
  3574. </Compile>
  3575. <Compile Include="workordermanage\workorder\workorderYWJList.aspx.designer.cs">
  3576. <DependentUpon>workorderYWJList.aspx</DependentUpon>
  3577. </Compile>
  3578. </ItemGroup>
  3579. <ItemGroup>
  3580. <ProjectReference Include="..\BaseCallCenter.BLL\HySoft.BaseCallCenter.BLL.csproj">
  3581. <Project>{686AB9E3-CAF6-4740-962D-6E7AFFC7BA22}</Project>
  3582. <Name>HySoft.BaseCallCenter.BLL</Name>
  3583. </ProjectReference>
  3584. <ProjectReference Include="..\BaseCallCenter.Common\HySoft.Common.csproj">
  3585. <Project>{56213535-7FD9-4ACD-A497-705670CE61DC}</Project>
  3586. <Name>HySoft.Common</Name>
  3587. </ProjectReference>
  3588. <ProjectReference Include="..\BaseCallCenter.DBUtility\HySoft.DBUtility.csproj">
  3589. <Project>{E2C9435B-CB68-465A-BDF9-333F2D75E81B}</Project>
  3590. <Name>HySoft.DBUtility</Name>
  3591. </ProjectReference>
  3592. <ProjectReference Include="..\BaseCallCenter.Model\HySoft.BaseCallCenter.Model.csproj">
  3593. <Project>{EA3A3BD8-2B5F-4077-9D8A-DFF27CDD4C12}</Project>
  3594. <Name>HySoft.BaseCallCenter.Model</Name>
  3595. </ProjectReference>
  3596. <ProjectReference Include="..\BaseCallCenter.UUAPI\HySoft.BaseCallCenter.UUAPI.csproj">
  3597. <Project>{4a89b866-0566-4dd3-b0eb-66635a98b35a}</Project>
  3598. <Name>HySoft.BaseCallCenter.UUAPI</Name>
  3599. </ProjectReference>
  3600. </ItemGroup>
  3601. <ItemGroup>
  3602. <Content Include="customermanage\ajax\regionlist.ashx" />
  3603. <Content Include="knowledgemanage\ajax\knowledge.ashx" />
  3604. <Content Include="customermanage\ajax\customer.ashx" />
  3605. <Content Include="customermanage\ajax\customeredit.ashx" />
  3606. <Content Include="customermanage\ajax\person.ashx" />
  3607. <Content Include="customermanage\ajax\personedit.ashx" />
  3608. <Content Include="customermanage\ajax\historyserviceinfo.ashx" />
  3609. <Content Include="reportmanage\dataanalysis\ajax\getdictionaryvaluelist.ashx" />
  3610. <Content Include="reportmanage\operationdata\controls\OneUserAPI.ashx" />
  3611. <Content Include="reportmanage\operationdata\controls\OneUserDepartmentAPI.ashx" />
  3612. <Content Include="reportmanage\operationdata\controls\TowUserAPI.ashx" />
  3613. <Content Include="reportmanage\operationdata\controls\TowUserDepartmentAPI.ashx" />
  3614. <Content Include="reportmanage\operationdata\controls\TowUserGZL.ashx" />
  3615. <Content Include="reportmanage\operationdata\controls\ZuoXiTongHua.ashx" />
  3616. <Content Include="faxmanage\ajax\faxSendAjax.ashx" />
  3617. <Content Include="expendmanage\ajax\expandlist.ashx" />
  3618. <Content Include="formmanage\ajax\entitylist.ashx" />
  3619. <Content Include="formmanage\ajax\formlist.ashx" />
  3620. <Content Include="askmanage\ajax\pagerinfo.ashx" />
  3621. <Content Include="askmanage\ajax\pageritems.ashx" />
  3622. <Content Include="askmanage\ajax\question.ashx" />
  3623. <Content Include="askmanage\ajax\questioncategory.ashx" />
  3624. <Content Include="askmanage\ajax\questionitems.ashx" />
  3625. <Content Include="calloutmanage\ajax\calloutopt.ashx" />
  3626. <Content Include="calloutmanage\ajax\callplan.ashx" />
  3627. <Content Include="calloutmanage\ajax\callplanfpset.ashx" />
  3628. <Content Include="calloutmanage\ajax\callplanintophone.ashx" />
  3629. <Content Include="calloutmanage\ajax\callplantelnum.ashx" />
  3630. <Content Include="calloutmanage\ajax\callplanwebset.ashx" />
  3631. <Content Include="calloutmanage\ajax\callplanresultdatahtml.ashx" />
  3632. <Content Include="noticemanage\ajax\noticemanagelist.ashx" />
  3633. <Content Include="noticemanage\ajax\noticeinfoview.ashx" />
  3634. <None Include="Properties\PublishProfiles\dd.pubxml" />
  3635. <None Include="Properties\PublishProfiles\配置文件1.pubxml" />
  3636. <None Include="Properties\Settings.settings">
  3637. <Generator>SettingsSingleFileGenerator</Generator>
  3638. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  3639. </None>
  3640. <Content Include="qualitymanage\ajax\indexbase.ashx" />
  3641. <Content Include="qualitymanage\ajax\indexcategory.ashx" />
  3642. <Content Include="qualitymanage\ajax\qcedit.ashx" />
  3643. <Content Include="qualitymanage\ajax\qcmanage.ashx" />
  3644. <Content Include="qualitymanage\ajax\QcResultList.ashx" />
  3645. <Content Include="reportmanage\operationdata\controls\YearContrast.ashx" />
  3646. <Content Include="reportmanage\operationdata\controls\ZuoXiWorkTotal.ashx" />
  3647. <Content Include="reportmanage\operationdata\controls\ZuoXiWorkTotalNew.ashx" />
  3648. <None Include="scripts\ui\skins\Aqua\images\dialog\ie6\Thumbs.db" />
  3649. <None Include="scripts\ui\skins\Aqua\images\dialog\Thumbs.db" />
  3650. <None Include="scripts\ui\skins\Aqua\images\layout\tab.psd" />
  3651. <None Include="scripts\ui\skins\Aqua\images\layout\tabs-tools.psd" />
  3652. <None Include="scripts\ui\skins\Aqua\images\tree\tree.psd" />
  3653. <Content Include="tools\verify_code.ashx" />
  3654. <Content Include="tools\basedata.ashx" />
  3655. <Content Include="sysmanage\ajax\optlogs.ashx" />
  3656. <Content Include="sysmanage\ajax\calllogs.ashx" />
  3657. <Content Include="sysmanage\ajax\loginlogs.ashx" />
  3658. <Content Include="sysmanage\ajax\sysconfigmanage.ashx" />
  3659. <Content Include="sysmanage\ajax\dictionarymanage.ashx" />
  3660. <Content Include="sysmanage\ajax\functionmanage.ashx" />
  3661. <Content Include="telmanage\ajax\seatmonitoring.ashx" />
  3662. <Content Include="telmanage\ajax\mobiledatalist.ashx" />
  3663. <Content Include="smsmanage\ajax\smsSentAjax.ashx" />
  3664. <Content Include="smsmanage\ajax\SmsSentAlWeiAjax.ashx" />
  3665. <Content Include="smsmanage\ajax\smsTypeListAjax.ashx" />
  3666. <Content Include="telmanage\ajax\callblack.ashx" />
  3667. <Content Include="telmanage\ajax\callleavelist.ashx" />
  3668. <Content Include="telmanage\ajax\telrecords.ashx" />
  3669. <Content Include="workordermanage\ajax\WorkalarmmangeAjax.ashx" />
  3670. <Content Include="workordermanage\ajax\Workbuttonmanageajax.ashx" />
  3671. <Content Include="workordermanage\ajax\WorkOrderStateAjax.ashx" />
  3672. <Content Include="workordermanage\ajax\WorkTypeManageAjax.ashx" />
  3673. <Content Include="sysmanage\ajax\ligerComboBox.ashx" />
  3674. <Content Include="sysmanage\ajax\rolelist.ashx" />
  3675. <Content Include="sysmanage\ajax\basedatalistAction.ashx" />
  3676. <Content Include="sysmanage\ajax\deptListAction.ashx" />
  3677. <Content Include="sysmanage\ajax\systemConfigAction.ashx" />
  3678. <Content Include="sysmanage\ajax\UserAjaxList.ashx" />
  3679. <Content Include="sysmanage\ajax\deptcategory.ashx" />
  3680. <Content Include="telmanage\ajax\customeropt.ashx" />
  3681. <Content Include="telmanage\ajax\selectuser.ashx" />
  3682. <Content Include="telmanage\ajax\addcontact.ashx" />
  3683. <Content Include="telmanage\ajax\workcalendarset.ashx" />
  3684. <Content Include="telmanage\ajax\editandsavecustomerinfo.ashx" />
  3685. <Content Include="telmanage\ajax\callgray.ashx" />
  3686. <Content Include="telmanage\ajax\reasonmanage.ashx" />
  3687. <Content Include="telmanage\ajax\callinNew.ashx" />
  3688. <Content Include="telmanage\ajax\callred.ashx" />
  3689. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\app-convert.properties" />
  3690. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-convert\src\main\resources\log4j.properties" />
  3691. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\resources\log4j.properties" />
  3692. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\pages\demo.jsp" />
  3693. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\pages\error.jsp" />
  3694. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\src\main\webapp\WEB-INF\spring\app-convert.properties" />
  3695. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\classes\com\highcharts\export\controller\ExportController.class" />
  3696. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\classes\com\highcharts\export\filter\CorsFilter.class" />
  3697. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\classes\log4j.properties" />
  3698. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007880.tmp" />
  3699. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007883.tmp" />
  3700. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007886.tmp" />
  3701. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_776ee455_1453bb181b6__8000_00007889.tmp" />
  3702. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000014.tmp" />
  3703. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000017.tmp" />
  3704. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000020.tmp" />
  3705. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000023.tmp" />
  3706. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000026.tmp" />
  3707. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload_cf7d419_1454f9ef8a4__8000_00000029.tmp" />
  3708. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000965.tmp" />
  3709. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000974.tmp" />
  3710. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000977.tmp" />
  3711. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000980.tmp" />
  3712. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000983.tmp" />
  3713. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000986.tmp" />
  3714. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000989.tmp" />
  3715. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000992.tmp" />
  3716. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000995.tmp" />
  3717. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00000998.tmp" />
  3718. <None Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\tmp\upload__6795ead4_1458e102cdd__8000_00001001.tmp" />
  3719. <None Include="ThirdParty\exporting-server\java\readme.md" />
  3720. <None Include="ThirdParty\exporting-server\phantomjs\readme.md" />
  3721. <None Include="ThirdParty\exporting-server\php\php-batik\index.php" />
  3722. <Content Include="workordermanage\ajax\workflowmanageajax.ashx" />
  3723. <None Include="tools\hykj.hy" />
  3724. <Content Include="workordermanage\ajax\CommonDataList.ashx" />
  3725. <Content Include="workordermanage\ajax\workorderDCLList.ashx" />
  3726. <Content Include="workordermanage\ajax\workorderstatelist.ashx" />
  3727. <Content Include="workordermanage\ajax\ligerComboBox.ashx" />
  3728. <Content Include="tools\login.ashx" />
  3729. <None Include="Web References\WebReferenceFax\FaxService.wsdl" />
  3730. <None Include="Web References\WebReferenceFax\Reference.map" />
  3731. <Content Include="workordermanage\ajax\workorderDHFList.ashx" />
  3732. <Content Include="workordermanage\ajax\workorderDJDList.ashx" />
  3733. <Content Include="workordermanage\ajax\workorderDJSList.ashx" />
  3734. <Content Include="workordermanage\ajax\workorderDZPList.ashx" />
  3735. <Content Include="workordermanage\ajax\YXGCSCountsList.ashx" />
  3736. <Content Include="workordermanage\workordernew\ajax\woOrder.ashx" />
  3737. <None Include="zxkhd.rar" />
  3738. </ItemGroup>
  3739. <ItemGroup>
  3740. <Folder Include="App_Code\" />
  3741. <Folder Include="reportmanage\kpiassess\" />
  3742. <Folder Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\target\generated-sources\annotations\" />
  3743. <Folder Include="ThirdParty\exporting-server\java\highcharts-export\highcharts-export-web\tmp\" />
  3744. </ItemGroup>
  3745. <PropertyGroup>
  3746. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  3747. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  3748. </PropertyGroup>
  3749. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  3750. <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  3751. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  3752. <ProjectExtensions>
  3753. <VisualStudio>
  3754. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  3755. <WebProjectProperties>
  3756. <UseIIS>True</UseIIS>
  3757. <AutoAssignPort>True</AutoAssignPort>
  3758. <DevelopmentServerPort>49765</DevelopmentServerPort>
  3759. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  3760. <IISUrl>http://localhost:49769/</IISUrl>
  3761. <NTLMAuthentication>False</NTLMAuthentication>
  3762. <UseCustomServer>False</UseCustomServer>
  3763. <CustomServerUrl>
  3764. </CustomServerUrl>
  3765. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  3766. </WebProjectProperties>
  3767. </FlavorProperties>
  3768. </VisualStudio>
  3769. </ProjectExtensions>
  3770. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  3771. Other similar extension points exist, see Microsoft.Common.targets.
  3772. <Target Name="BeforeBuild">
  3773. </Target>
  3774. <Target Name="AfterBuild">
  3775. </Target>
  3776. -->
  3777. </Project>