市长热线演示版

HySoft.BaseCallCenter.Web.csproj 189KB

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