1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
427.
428.
429.
430.
431.
432.
433.
434.
435.
436.
437.
438.
439.
440.
441.
442.
443.
444.
445.
446.
447.
448.
449.
450.
451.
452.
453.
454.
455.
456.
457.
458.
459.
460.
461.
462.
463.
464.
465.
466.
467.
468.
469.
470.
471.
472.
473.
474.
475.
476.
477.
478.
479.
480.
481.
482.
483.
484.
485.
486.
487.
488.
489.
490.
491.
492.
493.
494.
495.
496.
497.
498.
499.
500.
501.
502.
503.
504.
505.
506.
507.
508.
509.
510.
511.
512.
513.
514.
515.
516.
517.
518.
519.
520.
521.
522.
523.
524.
525.
526.
527.
528.
529.
530.
531.
532.
533.
534.
535.
536.
537.
538.
539.
540.
541.
542.
543.
544.
545.
546.
547.
548.
549.
550.
551.
552.
553.
554.
555.
556.
557.
558.
559.
560.
561.
562.
563.
564.
565.
566.
567.
568.
569.
570.
571.
572.
573.
574.
575.
576.
577.
578.
579.
580.
581.
582.
583.
584.
585.
586.
587.
588.
589.
590.
591.
592.
593.
594.
595.
596.
597.
598.
599.
600.
601.
602.
603.
604.
605.
606.
607.
608.
609.
610.
611.
612.
613.
614.
615.
616.
617.
618.
619.
620.
621.
622.
623.
624.
625.
626.
627.
628.
629.
630.
631.
632.
633.
634.
635.
636.
637.
638.
639.
640.
641.
642.
643.
644.
645.
646.
647.
648.
649.
650.
651.
652.
653.
654.
655.
656.
657.
658.
659.
660.
661.
662.
663.
664.
665.
666.
667.
668.
669.
670.
671.
672.
673.
674.
675.
676.
677.
678.
679.
680.
681.
682.
683.
684.
685.
686.
687.
688.
689.
690.
691.
692.
693.
694.
695.
696.
697.
698.
699.
700.
701.
702.
703.
704.
705.
706.
707.
708.
709.
710.
711.
712.
713.
714.
715.
716.
717.
718.
719.
720.
721.
722.
723.
724.
725.
726.
727.
728.
729.
730.
731.
732.
733.
734.
735.
736.
737.
738.
739.
740.
741.
742.
743.
744.
745.
746.
747.
748.
749.
750.
751.
752.
753.
754.
755.
756.
757.
758.
759.
760.
761.
762.
763.
764.
765.
766.
767.
768.
769.
770.
771.
772.
773.
774.
775.
776.
777.
778.
779.
780.
781.
782.
783.
784.
785.
786.
787.
788.
789.
790.
791.
792.
793.
794.
795.
796.
797.
798.
799.
800.
801.
802.
803.
804.
805.
806.
807.
808.
809.
810.
811.
812.
813.
814.
815.
816.
817.
818.
819.
820.
821.
822.
823.
824.
825.
826.
827.
828.
829.
830.
831.
832.
833.
834.
835.
836.
837.
838.
839.
840.
841.
842.
843.
844.
845.
846.
847.
848.
849.
850.
851.
852.
853.
854.
855.
856.
857.
858.
859.
860.
861.
862.
863.
864.
865.
866.
867.
868.
869.
870.
871.
872.
873.
874.
875.
876.
877.
878.
879.
880.
881.
882.
883.
884.
885.
886.
887.
888.
889.
890.
891.
892.
893.
894.
895.
896.
897.
898.
899.
900.
901.
902.
903.
904.
905.
906.
907.
908.
909.
910.
911.
912.
913.
914.
915.
916.
917.
918.
919.
920.
921.
922.
923.
924.
925.
926.
927.
928.
929.
930.
931.
932.
933.
934.
935.
936.
937.
938.
939.
940.
941.
942.
943.
944.
945.
946.
947.
948.
949.
950.
951.
952.
953.
954.
955.
956.
957.
958.
959.
960.
961.
962.
963.
964.
965.
966.
967.
968.
969.
970.
971.
972.
973.
974.
975.
976.
977.
978.
979.
980.
981.
982.
983.
984.
985.
986.
987.
988.
989.
990.
991.
992.
993.
994.
995.
996.
997.
998.
999.
1000.
1001.
1002.
1003.
1004.
1005.
1006.
1007.
1008.
1009.
1010.
1011.
1012.
1013.
1014.
1015.
1016.
1017.
1018.
1019.
1020.
1021.
1022.
1023.
1024.
1025.
1026.
Server Error in '/' Application.
--------------------------------------------------------------------------------
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30456: 'InitializeCulture' is not a member of 'ASP.demand_list_aspx'.
Source Error:
Line 1 : <%@ page language="VB" autoeventwireup="false" inherits="Demand_list, App_Web_mcul2rng" %>
Line 2 :
Line 3 : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Source File: C:\wwwpub\Demand_list.aspx Line: 1
Show Detailed Compiler Output:
D:\WINDOWS\system32> "D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\vbc.exe" /t:library /utf8output /R:"D:\WINDOWS\assembly\GAC_MSIL\System.Web.Services\2.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" /R:"D:\WINDOWS\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll" /R:"D:\WINDOWS\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll" /R:"D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\assembly\dl3\4ba107b0\fa42efe4_b1f4c501\App_Web__3_exf3l.DLL" /R:"D:\WINDOWS\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll" /R:"D:\WINDOWS\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" /R:"D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\assembly\dl3\7dde8af9\453234e5_b1f4c501\App_Web_mcul2rng.DLL" /R:"D:\WINDOWS\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" /R:"D:\WINDOWS\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" /R:"D:\WINDOWS\assembly\GAC_32\System.Web\2.0.0.0__b03f5f7f11d50a3a\System.Web.dll" /R:"D:\WINDOWS\assembly\GAC_MSIL\System.Web.Mobile\2.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll" /out:"D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw.dll" /D:DEBUG= 1 /debug+ /define:_MYTYPE=\"Web\" /imports:Microsoft.VisualBasic,System,System.Collections,System.Collections.Specialized,System.Configuration,System.Text,System.Text.RegularExpressions,System.Web,System.Web.Caching,System.Web.SessionState,System.Web.Security,System.Web.Profile,System.Web.UI,System.Web.UI.WebControls,System.Web.UI.WebControls.WebParts,System.Web.UI.HtmlControls "D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw.0.vb" "D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw.1.vb" "D:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw.2.vb"
Microsoft (R) Visual Basic Compiler version 8 . 0 . 50727 . 42
for Microsoft (R) .NET Framework version 2 . 0 . 50727 . 42
Copyright (c) Microsoft Corporation. All rights reserved.
C:\wwwpub\Computer_list.aspx( 1 ) : error BC30456: 'InitializeCulture' is not a member of 'ASP.computer_list_aspx'.
Me.InitializeCulture
~~~~~~~~~~~~~~~~~~~~
C:\wwwpub\Computer_list.aspx( 29 ) : error BC30456: 'Eval' is not a member of 'ASP.computer_list_aspx'.
dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(Me.Eval("Проверен"), System.Globalization.CultureInfo.CurrentCulture)
~~~~~~~
C:\wwwpub\Computer_list.aspx( 32 ) : error BC30456: 'Eval' is not a member of 'ASP.computer_list_aspx'.
dataBindingExpressionBuilderTarget.Text = System.Convert.ToString(Me.Eval("Проверен"), System.Globalization.CultureInfo.CurrentCulture)
~~~~~~~
C:\wwwpub\Demand_list.aspx( 1 ) : error BC30456: 'InitializeCulture' is not a member of 'ASP.demand_list_aspx'.
Me.InitializeCulture
~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 36 ) : error BC30554: 'Demand_list' is ambiguous.
Inherits Global.Demand_list
~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 37 ) : error BC30154: Class 'demand_list_aspx' must implement 'ReadOnly Property IsReusable() As Boolean' for interface 'System.Web.IHttpHandler'. Implementing property must have matching 'ReadOnly' or 'WriteOnly' specifiers.
Implements System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler
~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 37 ) : error BC30149: Class 'demand_list_aspx' must implement 'Sub ProcessRequest(context As HttpContext)' for interface 'System.Web.IHttpHandler'.
Implements System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler
~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 46 ) : error BC30554: 'Demand_list' is ambiguous.
CType(Me,Demand_list).AppRelativeVirtualPath = "~/Demand_list.aspx"
~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 50 ) : error BC30456: 'GetWrappedFileDependencies' is not a member of 'ASP.demand_list_aspx'.
Global.ASP.demand_list_aspx.__fileDependencies = Me.GetWrappedFileDependencies(dependencies)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 53 ) : error BC30456: 'Server' is not a member of 'ASP.demand_list_aspx'.
Me.Server.ScriptTimeout = 30000000
~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 58 ) : error BC30456: 'Context' is not a member of 'ASP.demand_list_aspx'.
Return CType(Me.Context.Profile,System.Web.Profile.DefaultProfile)
~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 62 ) : error BC30284: property 'SupportAutoEvents' cannot be declared 'Overrides' because it does not override a property in a base class.
Protected Overrides ReadOnly Property SupportAutoEvents() As Boolean
~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 70 ) : error BC30456: 'Context' is not a member of 'ASP.demand_list_aspx'.
Return CType(Me.Context.ApplicationInstance,System.Web.HttpApplication)
~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 119 ) : error BC30456: 'txtHostName' is not a member of 'ASP.demand_list_aspx'.
Me.txtHostName = __ctrl
~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 120 ) : error BC30311: Value of type 'ASP.demand_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 136 ) : error BC30456: 'Label1' is not a member of 'ASP.demand_list_aspx'.
Me.Label1 = __ctrl
~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 137 ) : error BC30311: Value of type 'ASP.demand_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 158 ) : error BC30456: 'DropDownList_DemandType' is not a member of 'ASP.demand_list_aspx'.
Me.DropDownList_DemandType = __ctrl
~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 159 ) : error BC30311: Value of type 'ASP.demand_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 200 ) : error BC30456: 'Label2' is not a member of 'ASP.demand_list_aspx'.
Me.Label2 = __ctrl
~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 201 ) : error BC30311: Value of type 'ASP.demand_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 222 ) : error BC30456: 'DropDownList_DemandClass' is not a member of 'ASP.demand_list_aspx'.
Me.DropDownList_DemandClass = __ctrl
~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 223 ) : error BC30311: Value of type 'ASP.demand_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 264 ) : error BC30456: 'SqlDataSource_DemandType' is not a member of 'ASP.demand_list_aspx'.
Me.SqlDataSource_DemandType = __ctrl
~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 286 ) : error BC30456: 'SqlDataSource_DemandClass' is not a member of 'ASP.demand_list_aspx'.
Me.SqlDataSource_DemandClass = __ctrl
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 308 ) : error BC30456: 'SqlDataSource_Demand' is not a member of 'ASP.demand_list_aspx'.
Me.SqlDataSource_Demand = __ctrl
~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 436 ) : error BC30456: 'GridView_Demands' is not a member of 'ASP.demand_list_aspx'.
Me.GridView_Demands = __ctrl
~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 437 ) : error BC30311: Value of type 'ASP.demand_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 518 ) : error BC30456: 'form1' is not a member of 'ASP.demand_list_aspx'.
Me.form1 = __ctrl
~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 725 ) : error BC30284: sub 'FrameworkInitialize' cannot be declared 'Overrides' because it does not override a sub in a base class.
Protected Overrides Sub FrameworkInitialize()
~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 728 ) : error BC30456: 'AddWrappedFileDependencies' is not a member of 'ASP.demand_list_aspx'.
Me.AddWrappedFileDependencies(Global.ASP.demand_list_aspx.__fileDependencies)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 729 ) : error BC30456: 'Request' is not a member of 'ASP.demand_list_aspx'.
Me.Request.ValidateInput
~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 732 ) : error BC30284: function 'GetTypeHashCode' cannot be declared 'Overrides' because it does not override a function in a base class.
Public Overrides Function GetTypeHashCode() As Integer
~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 0 .vb( 736 ) : error BC30284: sub 'ProcessRequest' cannot be declared 'Overrides' because it does not override a sub in a base class.
Public Overrides Sub ProcessRequest(ByVal context As System.Web.HttpContext)
~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 36 ) : error BC30554: 'Demand_list' is ambiguous.
Inherits Global.Demand_list
~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 37 ) : error BC30154: Class 'computer_list_aspx' must implement 'ReadOnly Property IsReusable() As Boolean' for interface 'System.Web.IHttpHandler'. Implementing property must have matching 'ReadOnly' or 'WriteOnly' specifiers.
Implements System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler
~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 37 ) : error BC30149: Class 'computer_list_aspx' must implement 'Sub ProcessRequest(context As HttpContext)' for interface 'System.Web.IHttpHandler'.
Implements System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler
~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 46 ) : error BC30554: 'Demand_list' is ambiguous.
CType(Me,Demand_list).AppRelativeVirtualPath = "~/Computer_list.aspx"
~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 50 ) : error BC30456: 'GetWrappedFileDependencies' is not a member of 'ASP.computer_list_aspx'.
Global.ASP.computer_list_aspx.__fileDependencies = Me.GetWrappedFileDependencies(dependencies)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 53 ) : error BC30456: 'Server' is not a member of 'ASP.computer_list_aspx'.
Me.Server.ScriptTimeout = 30000000
~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 58 ) : error BC30456: 'Context' is not a member of 'ASP.computer_list_aspx'.
Return CType(Me.Context.Profile,System.Web.Profile.DefaultProfile)
~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 62 ) : error BC30284: property 'SupportAutoEvents' cannot be declared 'Overrides' because it does not override a property in a base class.
Protected Overrides ReadOnly Property SupportAutoEvents() As Boolean
~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 70 ) : error BC30456: 'Context' is not a member of 'ASP.computer_list_aspx'.
Return CType(Me.Context.ApplicationInstance,System.Web.HttpApplication)
~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 119 ) : error BC30456: 'txtHostName' is not a member of 'ASP.computer_list_aspx'.
Me.txtHostName = __ctrl
~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 120 ) : error BC30311: Value of type 'ASP.computer_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 384 ) : error BC30311: Value of type 'ASP.computer_list_aspx' cannot be converted to 'System.Web.UI.TemplateControl'.
__ctrl.TemplateControl = Me
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 385 ) : error BC30311: Value of type 'ASP.computer_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 404 ) : error BC30456: 'Page' is not a member of 'ASP.computer_list_aspx'.
If (Not (Me.Page.GetDataItem) Is Nothing) Then
~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 468 ) : error BC30311: Value of type 'ASP.computer_list_aspx' cannot be converted to 'System.Web.UI.TemplateControl'.
__ctrl.TemplateControl = Me
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 469 ) : error BC30311: Value of type 'ASP.computer_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 488 ) : error BC30456: 'Page' is not a member of 'ASP.computer_list_aspx'.
If (Not (Me.Page.GetDataItem) Is Nothing) Then
~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1151 ) : error BC30456: 'GridView1' is not a member of 'ASP.computer_list_aspx'.
Me.GridView1 = __ctrl
~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1152 ) : error BC30311: Value of type 'ASP.computer_list_aspx' cannot be converted to 'System.Web.UI.Page'.
__ctrl.ApplyStyleSheetSkin(Me)
~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1253 ) : error BC30456: 'Inventory' is not a member of 'ASP.computer_list_aspx'.
Me.Inventory = __ctrl
~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1275 ) : error BC30456: 'form1' is not a member of 'ASP.computer_list_aspx'.
Me.form1 = __ctrl
~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1386 ) : error BC30284: sub 'FrameworkInitialize' cannot be declared 'Overrides' because it does not override a sub in a base class.
Protected Overrides Sub FrameworkInitialize()
~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1389 ) : error BC30456: 'AddWrappedFileDependencies' is not a member of 'ASP.computer_list_aspx'.
Me.AddWrappedFileDependencies(Global.ASP.computer_list_aspx.__fileDependencies)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1390 ) : error BC30456: 'Request' is not a member of 'ASP.computer_list_aspx'.
Me.Request.ValidateInput
~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1393 ) : error BC30284: function 'GetTypeHashCode' cannot be declared 'Overrides' because it does not override a function in a base class.
Public Overrides Function GetTypeHashCode() As Integer
~~~~~~~~~~~~~~~
D:\WINDOWS\Microsoft.NET\Framework\v2. 0 . 50727 \Temporary ASP.NET Files\root\a62f2db5\f9b0c16d\App_Web_oixfdnfw. 1 .vb( 1397 ) : error BC30284: sub 'ProcessRequest' cannot be declared 'Overrides' because it does not override a sub in a base class.
Public Overrides Sub ProcessRequest(ByVal context As System.Web.HttpContext)
~~~~~~~~~~~~~~
Show Complete Compilation Source:
Line 1 : #ExternalChecksum("C:\wwwpub\Demand_list.aspx","{406ea660-64cf-4c82-b6f0-42d48172a799}","2F0602BCF72B25C78D60D32C9DECB223")
Line 2 : '------------------------------------------------------------------------------
Line 3: ' <auto-generated>
Line 4 : ' This code was generated by a tool.
Line 5: ' Runtime Version: 2 . 0 . 50727 . 42
Line 6 : '
Line 7: ' Changes to this file may cause incorrect behavior and will be lost if
Line 8 : ' the code is regenerated.
Line 9: ' </auto-generated>
Line 10 : '------------------------------------------------------------------------------
Line 11:
Line 12: Option Strict Off
Line 13: Option Explicit On
Line 14:
Line 15: Imports Microsoft.VisualBasic
Line 16: Imports System
Line 17: Imports System.Collections
Line 18: Imports System.Collections.Specialized
Line 19: Imports System.Configuration
Line 20: Imports System.Text
Line 21: Imports System.Text.RegularExpressions
Line 22: Imports System.Web
Line 23: Imports System.Web.Caching
Line 24: Imports System.Web.Profile
Line 25: Imports System.Web.Security
Line 26: Imports System.Web.SessionState
Line 27: Imports System.Web.UI
Line 28: Imports System.Web.UI.HtmlControls
Line 29: Imports System.Web.UI.WebControls
Line 30: Imports System.Web.UI.WebControls.WebParts
Line 31:
Line 32: Namespace ASP
Line 33:
Line 34: <System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()> _
Line 35: Public Class demand_list_aspx
Line 36: Inherits Global.Demand_list
Line 37: Implements System.Web.SessionState.IRequiresSessionState, System.Web.IHttpHandler
Line 38:
Line 39: Private Shared __initialized As Boolean
Line 40:
Line 41: Private Shared __fileDependencies As Object
Line 42:
Line 43: Public Sub New()
Line 44: MyBase.New
Line 45: Dim dependencies() As String
Line 46: CType(Me,Demand_list).AppRelativeVirtualPath = "~/Demand_list.aspx"
Line 47: If (Global.ASP.demand_list_aspx.__initialized = false) Then
Line 48: dependencies = New String(0) {}
Line 49: dependencies(0) = "~/Demand_list.aspx"
Line 50: Global.ASP.demand_list_aspx.__fileDependencies = Me.GetWrappedFileDependencies(dependencies)
Line 51: Global.ASP.demand_list_aspx.__initialized = true
Line 52: End If
Line 53: Me.Server.ScriptTimeout = 30000000
Line 54: End Sub
Line 55:
Line 56: Protected ReadOnly Property Profile() As System.Web.Profile.DefaultProfile
Line 57: Get
Line 58: Return CType(Me.Context.Profile,System.Web.Profile.DefaultProfile)
Line 59: End Get
Line 60: End Property
Line 61:
Line 62: Protected Overrides ReadOnly Property SupportAutoEvents() As Boolean
Line 63: Get
Line 64: Return false
Line 65: End Get
Line 66: End Property
Line 67:
Line 68: Protected ReadOnly Property ApplicationInstance() As System.Web.HttpApplication
Line 69: Get
Line 70: Return CType(Me.Context.ApplicationInstance,System.Web.HttpApplication)
Line 71: End Get
Line 72: End Property
Line 73:
Line 74: Private Function __BuildControl__control3() As Global.System.Web.UI.HtmlControls.HtmlTitle
Line 75: Dim __ctrl As Global.System.Web.UI.HtmlControls.HtmlTitle
Line 76:
Line 77: #ExternalSource("C:\wwwpub\Demand_list.aspx",7)
Line 78: __ctrl = New Global.System.Web.UI.HtmlControls.HtmlTitle
Line 79:
Line 80: #End ExternalSource
Line 81: Dim __parser As System.Web.UI.IParserAccessor = CType(__ctrl,System.Web.UI.IParserAccessor)
Line 82:
Line 83: #ExternalSource("C:\wwwpub\Demand_list.aspx",7)
Line 84: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl("Untitled Page"))
Line 85:
Line 86: #End ExternalSource
Line 87: Return __ctrl
Line 88: End Function
Line 89:
Line 90: Private Function __BuildControl__control2() As Global.System.Web.UI.HtmlControls.HtmlHead
Line 91: Dim __ctrl As Global.System.Web.UI.HtmlControls.HtmlHead
Line 92:
Line 93: #ExternalSource("C:\wwwpub\Demand_list.aspx",6)
Line 94: __ctrl = New Global.System.Web.UI.HtmlControls.HtmlHead("head")
Line 95:
Line 96: #End ExternalSource
Line 97: Dim __ctrl1 As Global.System.Web.UI.HtmlControls.HtmlTitle
Line 98:
Line 99: #ExternalSource("C:\wwwpub\Demand_list.aspx",6)
Line 100: __ctrl1 = Me.__BuildControl__control3
Line 101:
Line 102: #End ExternalSource
Line 103: Dim __parser As System.Web.UI.IParserAccessor = CType(__ctrl,System.Web.UI.IParserAccessor)
Line 104:
Line 105: #ExternalSource("C:\wwwpub\Demand_list.aspx",6)
Line 106: __parser.AddParsedSubObject(__ctrl1)
Line 107:
Line 108: #End ExternalSource
Line 109: Return __ctrl
Line 110: End Function
Line 111:
Line 112: Private Function __BuildControltxtHostName() As Global.System.Web.UI.WebControls.TextBox
Line 113: Dim __ctrl As Global.System.Web.UI.WebControls.TextBox
Line 114:
Line 115: #ExternalSource("C:\wwwpub\Demand_list.aspx",12)
Line 116: __ctrl = New Global.System.Web.UI.WebControls.TextBox
Line 117:
Line 118: #End ExternalSource
Line 119: Me.txtHostName = __ctrl
Line 120: __ctrl.ApplyStyleSheetSkin(Me)
Line 121:
Line 122: #ExternalSource("C:\wwwpub\Demand_list.aspx",12)
Line 123: __ctrl.ID = "txtHostName"
Line 124:
Line 125: #End ExternalSource
Line 126: Return __ctrl
Line 127: End Function
Line 128:
Line 129: Private Function __BuildControlLabel1() As Global.System.Web.UI.WebControls.Label
Line 130: Dim __ctrl As Global.System.Web.UI.WebControls.Label
Line 131:
Line 132: #ExternalSource("C:\wwwpub\Demand_list.aspx",13)
Line 133: __ctrl = New Global.System.Web.UI.WebControls.Label
Line 134:
Line 135: #End ExternalSource
Line 136: Me.Label1 = __ctrl
Line 137: __ctrl.ApplyStyleSheetSkin(Me)
Line 138:
Line 139: #ExternalSource("C:\wwwpub\Demand_list.aspx",13)
Line 140: __ctrl.ID = "Label1"
Line 141:
Line 142: #End ExternalSource
Line 143:
Line 144: #ExternalSource("C:\wwwpub\Demand_list.aspx",13)
Line 145: __ctrl.Text = "Тип"
Line 146:
Line 147: #End ExternalSource
Line 148: Return __ctrl
Line 149: End Function
Line 150:
Line 151: Private Function __BuildControlDropDownList_DemandType() As Global.System.Web.UI.WebControls.DropDownList
Line 152: Dim __ctrl As Global.System.Web.UI.WebControls.DropDownList
Line 153:
Line 154: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 155: __ctrl = New Global.System.Web.UI.WebControls.DropDownList
Line 156:
Line 157: #End ExternalSource
Line 158: Me.DropDownList_DemandType = __ctrl
Line 159: __ctrl.ApplyStyleSheetSkin(Me)
Line 160:
Line 161: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 162: __ctrl.ID = "DropDownList_DemandType"
Line 163:
Line 164: #End ExternalSource
Line 165:
Line 166: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 167: __ctrl.DataSourceID = "SqlDataSource_DemandType"
Line 168:
Line 169: #End ExternalSource
Line 170:
Line 171: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 172: __ctrl.DataTextField = "DemandType"
Line 173:
Line 174: #End ExternalSource
Line 175:
Line 176: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 177: __ctrl.Width = New System.Web.UI.WebControls.Unit(144, System.Web.UI.WebControls.UnitType.Pixel)
Line 178:
Line 179: #End ExternalSource
Line 180:
Line 181: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 182: __ctrl.AutoPostBack = true
Line 183:
Line 184: #End ExternalSource
Line 185:
Line 186: #ExternalSource("C:\wwwpub\Demand_list.aspx",14)
Line 187: __ctrl.DataValueField = "ID"
Line 188:
Line 189: #End ExternalSource
Line 190: Return __ctrl
Line 191: End Function
Line 192:
Line 193: Private Function __BuildControlLabel2() As Global.System.Web.UI.WebControls.Label
Line 194: Dim __ctrl As Global.System.Web.UI.WebControls.Label
Line 195:
Line 196: #ExternalSource("C:\wwwpub\Demand_list.aspx",17)
Line 197: __ctrl = New Global.System.Web.UI.WebControls.Label
Line 198:
Line 199: #End ExternalSource
Line 200: Me.Label2 = __ctrl
Line 201: __ctrl.ApplyStyleSheetSkin(Me)
Line 202:
Line 203: #ExternalSource("C:\wwwpub\Demand_list.aspx",17)
Line 204: __ctrl.ID = "Label2"
Line 205:
Line 206: #End ExternalSource
Line 207:
Line 208: #ExternalSource("C:\wwwpub\Demand_list.aspx",17)
Line 209: __ctrl.Text = "Класс"
Line 210:
Line 211: #End ExternalSource
Line 212: Return __ctrl
Line 213: End Function
Line 214:
Line 215: Private Function __BuildControlDropDownList_DemandClass() As Global.System.Web.UI.WebControls.DropDownList
Line 216: Dim __ctrl As Global.System.Web.UI.WebControls.DropDownList
Line 217:
Line 218: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 219: __ctrl = New Global.System.Web.UI.WebControls.DropDownList
Line 220:
Line 221: #End ExternalSource
Line 222: Me.DropDownList_DemandClass = __ctrl
Line 223: __ctrl.ApplyStyleSheetSkin(Me)
Line 224:
Line 225: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 226: __ctrl.ID = "DropDownList_DemandClass"
Line 227:
Line 228: #End ExternalSource
Line 229:
Line 230: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 231: __ctrl.DataSourceID = "SqlDataSource_DemandClass"
Line 232:
Line 233: #End ExternalSource
Line 234:
Line 235: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 236: __ctrl.DataTextField = "DemandClass"
Line 237:
Line 238: #End ExternalSource
Line 239:
Line 240: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 241: __ctrl.Width = New System.Web.UI.WebControls.Unit(144, System.Web.UI.WebControls.UnitType.Pixel)
Line 242:
Line 243: #End ExternalSource
Line 244:
Line 245: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 246: __ctrl.AutoPostBack = true
Line 247:
Line 248: #End ExternalSource
Line 249:
Line 250: #ExternalSource("C:\wwwpub\Demand_list.aspx",18)
Line 251: __ctrl.DataValueField = "ID"
Line 252:
Line 253: #End ExternalSource
Line 254: Return __ctrl
Line 255: End Function
Line 256:
Line 257: Private Function __BuildControlSqlDataSource_DemandType() As Global.System.Web.UI.WebControls.SqlDataSource
Line 258: Dim __ctrl As Global.System.Web.UI.WebControls.SqlDataSource
Line 259:
Line 260: #ExternalSource("C:\wwwpub\Demand_list.aspx",21)
Line 261: __ctrl = New Global.System.Web.UI.WebControls.SqlDataSource
Line 262:
Line 263: #End ExternalSource
Line 264: Me.SqlDataSource_DemandType = __ctrl
Line 265:
Line 266: #ExternalSource("C:\wwwpub\Demand_list.aspx",21)
Line 267: __ctrl.ID = "SqlDataSource_DemandType"
Line 268:
Line 269: #End ExternalSource
Line 270:
Line 271: #ExternalSource("C:\wwwpub\Demand_list.aspx",21)
Line 272: __ctrl.SelectCommand = "SELECT [ID], [DemandType] FROM [DemandType] union select 0, '<ВСЕ>'"
Line 273:
Line 274: #End ExternalSource
Line 275: __ctrl.ConnectionString = System.Convert.ToString(System.Web.Compilation.ConnectionStringsExpressionBuilder.GetConnectionString("InventoryConnectionString"), System.Globalization.CultureInfo.CurrentCulture)
Line 276: Return __ctrl
Line 277: End Function
Line 278:
Line 279: Private Function __BuildControlSqlDataSource_DemandClass() As Global.System.Web.UI.WebControls.SqlDataSource
Line 280: Dim __ctrl As Global.System.Web.UI.WebControls.SqlDataSource
Line 281:
Line 282: #ExternalSource("C:\wwwpub\Demand_list.aspx",24)
Line 283: __ctrl = New Global.System.Web.UI.WebControls.SqlDataSource
Line 284:
Line 285: #End ExternalSource
Line 286: Me.SqlDataSource_DemandClass = __ctrl
Line 287:
Line 288: #ExternalSource("C:\wwwpub\Demand_list.aspx",24)
Line 289: __ctrl.ID = "SqlDataSource_DemandClass"
Line 290:
Line 291: #End ExternalSource
Line 292:
Line 293: #ExternalSource("C:\wwwpub\Demand_list.aspx",24)
Line 294: __ctrl.SelectCommand = "SELECT [ID], [DemandClass] FROM [DemandClass] union select 0, '<ВСЕ>'"
Line 295:
Line 296: #End ExternalSource
Line 297: __ctrl.ConnectionString = System.Convert.ToString(System.Web.Compilation.ConnectionStringsExpressionBuilder.GetConnectionString("InventoryConnectionString"), System.Globalization.CultureInfo.CurrentCulture)
Line 298: Return __ctrl
Line 299: End Function
Line 300:
Line 301: Private Function __BuildControlSqlDataSource_Demand() As Global.System.Web.UI.WebControls.SqlDataSource
Line 302: Dim __ctrl As Global.System.Web.UI.WebControls.SqlDataSource
Line 303:
Line 304: #ExternalSource("C:\wwwpub\Demand_list.aspx",28)
Line 305: __ctrl = New Global.System.Web.UI.WebControls.SqlDataSource
Line 306:
Line 307: #End ExternalSource
Line 308: Me.SqlDataSource_Demand = __ctrl
Line 309:
Line 310: #ExternalSource("C:\wwwpub\Demand_list.aspx",28)
Line 311: __ctrl.ID = "SqlDataSource_Demand"
Line 312:
Line 313: #End ExternalSource
Line 314:
Line 315: #ExternalSource("C:\wwwpub\Demand_list.aspx",28)
Line 316: __ctrl.SelectCommand = "SELECT * FROM [v_Заявки]"
Line 317:
Line 318: #End ExternalSource
Line 319: __ctrl.ConnectionString = System.Convert.ToString(System.Web.Compilation.ConnectionStringsExpressionBuilder.GetConnectionString("InventoryConnectionString"), System.Globalization.CultureInfo.CurrentCulture)
Line 320: Return __ctrl
Line 321: End Function
Line 322:
Line 323: Private Sub __BuildControl__control4(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 324:
Line 325: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 326: __ctrl.BackColor = CType(System.Drawing.Color.FromArgb(93, 123, 157),System.Drawing.Color)
Line 327:
Line 328: #End ExternalSource
Line 329:
Line 330: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 331: __ctrl.Font.Bold = true
Line 332:
Line 333: #End ExternalSource
Line 334:
Line 335: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 336: __ctrl.ForeColor = System.Drawing.Color.White
Line 337:
Line 338: #End ExternalSource
Line 339: End Sub
Line 340:
Line 341: Private Sub __BuildControl__control5(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 342:
Line 343: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 344: __ctrl.BackColor = CType(System.Drawing.Color.FromArgb(247, 246, 243),System.Drawing.Color)
Line 345:
Line 346: #End ExternalSource
Line 347:
Line 348: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 349: __ctrl.ForeColor = CType(System.Drawing.Color.FromArgb(51, 51, 51),System.Drawing.Color)
Line 350:
Line 351: #End ExternalSource
Line 352: End Sub
Line 353:
Line 354: Private Sub __BuildControl__control6(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 355:
Line 356: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 357: __ctrl.BackColor = CType(System.Drawing.Color.FromArgb(153, 153, 153),System.Drawing.Color)
Line 358:
Line 359: #End ExternalSource
Line 360: End Sub
Line 361:
Line 362: Private Sub __BuildControl__control7(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 363:
Line 364: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 365: __ctrl.BackColor = CType(System.Drawing.Color.FromArgb(226, 222, 214),System.Drawing.Color)
Line 366:
Line 367: #End ExternalSource
Line 368:
Line 369: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 370: __ctrl.Font.Bold = true
Line 371:
Line 372: #End ExternalSource
Line 373:
Line 374: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 375: __ctrl.ForeColor = CType(System.Drawing.Color.FromArgb(51, 51, 51),System.Drawing.Color)
Line 376:
Line 377: #End ExternalSource
Line 378: End Sub
Line 379:
Line 380: Private Sub __BuildControl__control8(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 381:
Line 382: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 383: __ctrl.BackColor = CType(System.Drawing.Color.FromArgb(40, 71, 117),System.Drawing.Color)
Line 384:
Line 385: #End ExternalSource
Line 386:
Line 387: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 388: __ctrl.ForeColor = System.Drawing.Color.White
Line 389:
Line 390: #End ExternalSource
Line 391:
Line 392: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 393: __ctrl.HorizontalAlign = System.Web.UI.WebControls.HorizontalAlign.Center
Line 394:
Line 395: #End ExternalSource
Line 396: End Sub
Line 397:
Line 398: Private Sub __BuildControl__control9(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 399:
Line 400: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 401: __ctrl.BackColor = CType(System.Drawing.Color.FromArgb(93, 123, 157),System.Drawing.Color)
Line 402:
Line 403: #End ExternalSource
Line 404:
Line 405: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 406: __ctrl.Font.Bold = true
Line 407:
Line 408: #End ExternalSource
Line 409:
Line 410: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 411: __ctrl.ForeColor = System.Drawing.Color.White
Line 412:
Line 413: #End ExternalSource
Line 414: End Sub
Line 415:
Line 416: Private Sub __BuildControl__control10(ByVal __ctrl As System.Web.UI.WebControls.TableItemStyle)
Line 417:
Line 418: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 419: __ctrl.BackColor = System.Drawing.Color.White
Line 420:
Line 421: #End ExternalSource
Line 422:
Line 423: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 424: __ctrl.ForeColor = CType(System.Drawing.Color.FromArgb(40, 71, 117),System.Drawing.Color)
Line 425:
Line 426: #End ExternalSource
Line 427: End Sub
Line 428:
Line 429: Private Function __BuildControlGridView_Demands() As Global.System.Web.UI.WebControls.GridView
Line 430: Dim __ctrl As Global.System.Web.UI.WebControls.GridView
Line 431:
Line 432: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 433: __ctrl = New Global.System.Web.UI.WebControls.GridView
Line 434:
Line 435: #End ExternalSource
Line 436: Me.GridView_Demands = __ctrl
Line 437: __ctrl.ApplyStyleSheetSkin(Me)
Line 438:
Line 439: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 440: __ctrl.ID = "GridView_Demands"
Line 441:
Line 442: #End ExternalSource
Line 443:
Line 444: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 445: __ctrl.AllowPaging = true
Line 446:
Line 447: #End ExternalSource
Line 448:
Line 449: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 450: __ctrl.AllowSorting = true
Line 451:
Line 452: #End ExternalSource
Line 453:
Line 454: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 455: __ctrl.CellPadding = 4
Line 456:
Line 457: #End ExternalSource
Line 458:
Line 459: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 460: __ctrl.DataSourceID = "SqlDataSource_Demand"
Line 461:
Line 462: #End ExternalSource
Line 463:
Line 464: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 465: __ctrl.ForeColor = CType(System.Drawing.Color.FromArgb(51, 51, 51),System.Drawing.Color)
Line 466:
Line 467: #End ExternalSource
Line 468:
Line 469: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 470: __ctrl.GridLines = System.Web.UI.WebControls.GridLines.None
Line 471:
Line 472: #End ExternalSource
Line 473:
Line 474: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 475: Me.__BuildControl__control4(__ctrl.FooterStyle)
Line 476:
Line 477: #End ExternalSource
Line 478:
Line 479: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 480: Me.__BuildControl__control5(__ctrl.RowStyle)
Line 481:
Line 482: #End ExternalSource
Line 483:
Line 484: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 485: Me.__BuildControl__control6(__ctrl.EditRowStyle)
Line 486:
Line 487: #End ExternalSource
Line 488:
Line 489: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 490: Me.__BuildControl__control7(__ctrl.SelectedRowStyle)
Line 491:
Line 492: #End ExternalSource
Line 493:
Line 494: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 495: Me.__BuildControl__control8(__ctrl.PagerStyle)
Line 496:
Line 497: #End ExternalSource
Line 498:
Line 499: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 500: Me.__BuildControl__control9(__ctrl.HeaderStyle)
Line 501:
Line 502: #End ExternalSource
Line 503:
Line 504: #ExternalSource("C:\wwwpub\Demand_list.aspx",30)
Line 505: Me.__BuildControl__control10(__ctrl.AlternatingRowStyle)
Line 506:
Line 507: #End ExternalSource
Line 508: Return __ctrl
Line 509: End Function
Line 510:
Line 511: Private Function __BuildControlform1() As Global.System.Web.UI.HtmlControls.HtmlForm
Line 512: Dim __ctrl As Global.System.Web.UI.HtmlControls.HtmlForm
Line 513:
Line 514: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 515: __ctrl = New Global.System.Web.UI.HtmlControls.HtmlForm
Line 516:
Line 517: #End ExternalSource
Line 518: Me.form1 = __ctrl
Line 519:
Line 520: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 521: __ctrl.ID = "form1"
Line 522:
Line 523: #End ExternalSource
Line 524: Dim __parser As System.Web.UI.IParserAccessor = CType(__ctrl,System.Web.UI.IParserAccessor)
Line 525:
Line 526: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 527: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" <div>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 528:
Line 529: #End ExternalSource
Line 530: Dim __ctrl1 As Global.System.Web.UI.WebControls.TextBox
Line 531:
Line 532: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 533: __ctrl1 = Me.__BuildControltxtHostName
Line 534:
Line 535: #End ExternalSource
Line 536:
Line 537: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 538: __parser.AddParsedSubObject(__ctrl1)
Line 539:
Line 540: #End ExternalSource
Line 541:
Line 542: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 543: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(" "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 544:
Line 545: #End ExternalSource
Line 546: Dim __ctrl2 As Global.System.Web.UI.WebControls.Label
Line 547:
Line 548: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 549: __ctrl2 = Me.__BuildControlLabel1
Line 550:
Line 551: #End ExternalSource
Line 552:
Line 553: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 554: __parser.AddParsedSubObject(__ctrl2)
Line 555:
Line 556: #End ExternalSource
Line 557:
Line 558: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 559: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(" "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 560:
Line 561: #End ExternalSource
Line 562: Dim __ctrl3 As Global.System.Web.UI.WebControls.DropDownList
Line 563:
Line 564: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 565: __ctrl3 = Me.__BuildControlDropDownList_DemandType
Line 566:
Line 567: #End ExternalSource
Line 568:
Line 569: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 570: __parser.AddParsedSubObject(__ctrl3)
Line 571:
Line 572: #End ExternalSource
Line 573:
Line 574: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 575: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 576:
Line 577: #End ExternalSource
Line 578: Dim __ctrl4 As Global.System.Web.UI.WebControls.Label
Line 579:
Line 580: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 581: __ctrl4 = Me.__BuildControlLabel2
Line 582:
Line 583: #End ExternalSource
Line 584:
Line 585: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 586: __parser.AddParsedSubObject(__ctrl4)
Line 587:
Line 588: #End ExternalSource
Line 589:
Line 590: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 591: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 592:
Line 593: #End ExternalSource
Line 594: Dim __ctrl5 As Global.System.Web.UI.WebControls.DropDownList
Line 595:
Line 596: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 597: __ctrl5 = Me.__BuildControlDropDownList_DemandClass
Line 598:
Line 599: #End ExternalSource
Line 600:
Line 601: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 602: __parser.AddParsedSubObject(__ctrl5)
Line 603:
Line 604: #End ExternalSource
Line 605:
Line 606: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 607: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 608:
Line 609: #End ExternalSource
Line 610: Dim __ctrl6 As Global.System.Web.UI.WebControls.SqlDataSource
Line 611:
Line 612: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 613: __ctrl6 = Me.__BuildControlSqlDataSource_DemandType
Line 614:
Line 615: #End ExternalSource
Line 616:
Line 617: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 618: __parser.AddParsedSubObject(__ctrl6)
Line 619:
Line 620: #End ExternalSource
Line 621:
Line 622: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 623: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 624:
Line 625: #End ExternalSource
Line 626: Dim __ctrl7 As Global.System.Web.UI.WebControls.SqlDataSource
Line 627:
Line 628: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 629: __ctrl7 = Me.__BuildControlSqlDataSource_DemandClass
Line 630:
Line 631: #End ExternalSource
Line 632:
Line 633: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 634: __parser.AddParsedSubObject(__ctrl7)
Line 635:
Line 636: #End ExternalSource
Line 637:
Line 638: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 639: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" <br />"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 640:
Line 641: #End ExternalSource
Line 642: Dim __ctrl8 As Global.System.Web.UI.WebControls.SqlDataSource
Line 643:
Line 644: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 645: __ctrl8 = Me.__BuildControlSqlDataSource_Demand
Line 646:
Line 647: #End ExternalSource
Line 648:
Line 649: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 650: __parser.AddParsedSubObject(__ctrl8)
Line 651:
Line 652: #End ExternalSource
Line 653:
Line 654: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 655: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 656:
Line 657: #End ExternalSource
Line 658: Dim __ctrl9 As Global.System.Web.UI.WebControls.GridView
Line 659:
Line 660: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 661: __ctrl9 = Me.__BuildControlGridView_Demands
Line 662:
Line 663: #End ExternalSource
Line 664:
Line 665: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 666: __parser.AddParsedSubObject(__ctrl9)
Line 667:
Line 668: #End ExternalSource
Line 669:
Line 670: #ExternalSource("C:\wwwpub\Demand_list.aspx",10)
Line 671: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" <br />"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" </div>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 672:
Line 673: #End ExternalSource
Line 674: Return __ctrl
Line 675: End Function
Line 676:
Line 677: Private Sub __BuildControlTree(ByVal __ctrl As demand_list_aspx)
Line 678:
Line 679: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 680: Me.InitializeCulture
Line 681:
Line 682: #End ExternalSource
Line 683: Dim __parser As System.Web.UI.IParserAccessor = CType(__ctrl,System.Web.UI.IParserAccessor)
Line 684:
Line 685: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 686: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"<!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1 . 0 Transitional//EN"" ""http://www.w3"& _
Line 687: ".org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"<html xmlns=""http://www.w3.org/ 1 "& _
Line 688: "999/xhtml"" >"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)))
Line 689:
Line 690: #End ExternalSource
Line 691: Dim __ctrl1 As Global.System.Web.UI.HtmlControls.HtmlHead
Line 692:
Line 693: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 694: __ctrl1 = Me.__BuildControl__control2
Line 695:
Line 696: #End ExternalSource
Line 697:
Line 698: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 699: __parser.AddParsedSubObject(__ctrl1)
Line 700:
Line 701: #End ExternalSource
Line 702:
Line 703: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 704: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"<body>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "))
Line 705:
Line 706: #End ExternalSource
Line 707: Dim __ctrl2 As Global.System.Web.UI.HtmlControls.HtmlForm
Line 708:
Line 709: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 710: __ctrl2 = Me.__BuildControlform1
Line 711:
Line 712: #End ExternalSource
Line 713:
Line 714: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 715: __parser.AddParsedSubObject(__ctrl2)
Line 716:
Line 717: #End ExternalSource
Line 718:
Line 719: #ExternalSource("C:\wwwpub\Demand_list.aspx",1)
Line 720: __parser.AddParsedSubObject(New System.Web.UI.LiteralControl(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"</body>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"</html>"&Global.Microsoft.VisualBasic.ChrW( 13 )&Global.Microsoft.VisualBasic.ChrW( 10 )))
Line 721 :
Line 722 : #End ExternalSource
Line 723 : End Sub
Line 724 :
Line 725 : Protected Overrides Sub FrameworkInitialize()
Line 726 : MyBase.FrameworkInitialize
Line 727 : Me.__BuildControlTree(Me)
Line 728 : Me.AddWrappedFileDependencies(Global.ASP.demand_list_aspx.__fileDependencies)
Line 729 : Me.Request.ValidateInput
Line 730 : End Sub
Line 731 :
Line 732 : Public Overrides Function GetTypeHashCode() As Integer
Line 733 : Return - 357550896
Line 734 : End Function
Line 735 :
Line 736 : Public Overrides Sub ProcessRequest(ByVal context As System.Web.HttpContext)
Line 737 : MyBase.ProcessRequest(context)
Line 738 : End Sub
Line 739 : End Class
Line 740 : End Namespace
Line 741 :
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version: 2 . 0 . 50727 . 42 ; ASP.NET Version: 2 . 0 . 50727 . 42