Гость
Форумы / Visual Basic [игнор отключен] [закрыт для гостей] / Заполнение web-формы из excel / 11 сообщений из 11, страница 1 из 1
03.04.2014, 17:01
    #38604553
yanik
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
Доброе время суток!
Встала задача заполнения web-формы из ексель-формы. Почитал данную ветку форума, нашел похожие темы.
В одной из них говорится, что нужно добавления компонента WebBrowser.
Но у меня нет такого компонента.
Я захожу на вкладку разработчик -> Visual Basic -> добавляю форму, но в списке компонентов такого нет.
Подскажите, что я делаю не так?
...
Рейтинг: 0 / 0
03.04.2014, 17:08
    #38604557
Shocker.Pro
Участник
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
а у меня есть, что я делаю не так?
...
Рейтинг: 0 / 0
03.04.2014, 17:14
    #38604570
yanik
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
Shocker.Pro,

...
Рейтинг: 0 / 0
03.04.2014, 17:16
    #38604574
Shocker.Pro
Участник
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
а если побольше растянуть ToolBox?
...
Рейтинг: 0 / 0
03.04.2014, 17:22
    #38604584
yanik
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
Shocker.Pro,

расстягивал - нет такого :(
...
Рейтинг: 0 / 0
03.04.2014, 17:57
    #38604644
Казанский
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
По умолчанию его действительно нет.
Правый клик по тулбоксу - Components - Microsoft Internet Control.
Пишут, что могут быть проблемы с IE7: http://forums.devx.com/showthread.php?172380-How-do-i-add-the-Web-Browser-control-to-my-Toolbox
...
Рейтинг: 0 / 0
03.04.2014, 18:09
    #38604667
Shocker.Pro
Участник
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
КазанскийПо умолчанию его действительно нет.у меня есть именно по умолчанию. Эксель 2010, автор свой не назвал
...
Рейтинг: 0 / 0
03.04.2014, 20:52
    #38604837
Казанский
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
А я про VB6, согласно раздела :)
...
Рейтинг: 0 / 0
03.04.2014, 22:02
    #38604878
Shocker.Pro
Участник
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
Казанский, ну твой совет годится и для VBA )
...
Рейтинг: 0 / 0
11.04.2014, 11:17
    #38612120
yanik
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
Казанский , спасибо, получилось добавить компонент на форму, но оказывается можно обойтись и без него )
Нашел объект internetexplorer, пишу вот такой код для заполнения хотя бы одного поля:
Код: vbnet
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
Sub NeedVIPBook()
Dim ie As Object

Set ie = CreateObject("internetexplorer.application")
ie.Navigate "http://ru-s-mosc-por01/Lists/Suppliers/NewForm.aspx?RootFolder=%2FLists%2FSuppliers&Source=http%3A%2F%2Fru%2Ds%2Dmosc%2Dpor01%2FLists%2FSuppliers%2FAllItems%2Easpx"
Do While ie.Busy
    Application.Wait DateAdd("s", 1, Now)
Loop
ie.Visible = True
'Set IEdoc = ie.Document: DoEvents: DoEvents
ie.Document.Forms(0).getElementById("ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl05_ctl00_ctl00_ctl04_ctl00_ctl00_TextField").Item(0).Value = "Test"
ie.Document.Forms(0).getElementById("ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl05$ctl00$ctl00$ctl04$ctl00$ctl00$TextField").Item(0).Value = "Test"

Set ie = Nothing

End Sub


Но он почему то не работает((
Ниже код формы:
Код: html
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.
  <form name="aspnetForm" method="post" action="NewForm.aspx?RootFolder=%2fLists%2fSuppliers&amp;Source=http%3a%2f%2fru-s-mosc-por01%2fLists%2fSuppliers%2fAllItems.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">


<div>

	<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWPgKRjf7SDgLZoI3QBwLC7+2ACQKW1b27AgLUpLycCgKKlazzCwL/vuW6AgKkiPDpDgKZo+qiCQKH1flZAuPlk/8HAvenorcIAovOzdcPAoCx88cDAs3E48EIAqCrtksCgLTDww4C1ILVugECj5e7oAQCyfe4iAoCt+TX9QsCrcHp/gIChJPwlw4Cx47gkAQCsY2NjgYCxsul6w0Cv9iZjAYCl9++kgoC0+7kkQECwJ7UgAwCqP+qow0C4uWZjA4C97aeiAsC6vi9rwkC8tSF5wkC9aGY1A4C2eSnxQQCva+M7g0Cz9j2lQ0CysOv2wUCjbOG8gUCvJPn3QcC4YK+lQMC7YLWlgMCrcn80wECvsC4jQsC3ovVjwsCrJDFoQwCjfnX+w4Ci5DEgA4CvuOangYCtsuXkwEC/fryzwgCmonF9QgCht/Szw8CvvCIZAK1lujKCgKQ87y5AwLUmd37CgKBjpWdCgL0yrnaCgL0iqzIAmna+jsIXcrXLxP1V/PjfbW5lITJ" />
</div>
	
  <TABLE class="ms-main" CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%" HEIGHT="100%">
	<tr><td>
		<table CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%">
		<tr>
		 <td colspan=4 class="ms-globalbreadcrumb">
			<span id="TurnOnAccessibility" style="display:none">
			   <a href="#" class="ms-skip" onclick="SetIsAccessibilityFeatureEnabled(true);UpdateAccessibilityUI();return false;">
			Turn on more accessible mode</a>
			</span>
			<a href="javascript:;" onclick="javascript:this.href='#mainContent';" class="ms-skip" AccessKey="J">
			Skip to main content</a>
		 <table cellpadding=0 cellspacing=0 height=100% class="ms-globalleft">
		   <tr>
			<td class="ms-globallinks" style="padding-top: 2px;" height=100% valign=middle>
			 <div>
			  <span id="TurnOffAccessibility" style="display:none">
				<a href="#" class="ms-acclink" onclick="SetIsAccessibilityFeatureEnabled(false);UpdateAccessibilityUI();return false;">
				Turn off more accessible mode</a>
			  </span>
			  
				<span id="ctl00_PlaceHolderGlobalNavigation_PlaceHolderGlobalNavigationSiteMap_GlobalNavigationSiteMap"><span><a class="ms-sitemapdirectional" href="/">ALPS - Air Liquide Procurement System</a></span></span>
			  
			  </div>
			 </td>
		   </tr>
		 </table>
		 <table cellpadding="0" cellspacing="0" height=100% class="ms-globalright">
		  <tr>
			  <td valign="middle" class="ms-globallinks" style="padding-left:3px; padding-right:6px;">
			  
			  </td>

		  <td style="padding-left:1px;padding-right:3px;" class="ms-globallinks">|</td>
			  <td valign="middle" class="ms-globallinks">
				<table cellspacing="0" cellpadding="0">
				 <tr>
				  <td class="ms-globallinks">
					</td>
				  <td class="ms-globallinks">
					</td>
				 </tr>
				</table>
			  </td>
			  <td valign="middle" class="ms-globallinks">&nbsp;
				<a href="javascript:TopHelpButtonClick('NavBarHelpHome')" id="ctl00_PlaceHolderGlobalNavigation_TopHelpLink" AccessKey="6" title="Help (new window)"><img src="/_layouts/images/helpicon.gif" align="absmiddle" border="0" alt="Help (new window)" /></a>
			  </td>
			  </tr>
			</table>
			</td>
		   </tr>
	   </table>
	  </td></tr>
	<tr>
	 <td class="ms-globalTitleArea">
	  <table width=100% cellpadding=0 cellspacing=0 border=0>
	   <tr>
		<td id="GlobalTitleAreaImage" class="ms-titleimagearea">
		<img id="ctl00_onetidHeadbnnr0" src="/al.png" alt="" style="border-width:0px;" /></td>
		<td class="ms-sitetitle" width=100%>
		  
			<h1 class="ms-sitetitle">
		   <a id="ctl00_PlaceHolderSiteName_onetidProjectPropertyTitle" href="/">
			 ALPS - Air Liquide Procurement System
		   </a>
		  </h1>
		  
		</td>
		<td style="padding-top:8px;" valign=top>
		  
				
<table border=0 cellpadding="0" cellspacing="0" class='ms-searchform'><tr>
<td>
<SELECT id='idSearchScope' name='SearchScope' class='ms-searchbox' title="Search Scope">
<OPTION value='http://ru-s-mosc-por01' > This Site </OPTION>

	<OPTION value=7f3348f6-1dca-4f31-9d91-ae5cb259e5fc SELECTED> This List </OPTION>

</SELECT>
</td>
</div>
</td>
</tr></table>

		  
		</td>
	   </tr>
	  </table>
	 </td>
	</tr>
	<TR>
	 <TD id="onetIdTopNavBarContainer" WIDTH=100% class="ms-bannerContainer">
		
			<table class="ms-bannerframe" border="0" cellspacing="0" cellpadding="0" width="100%">
		   <tr>
			<td nowrap valign="middle"></td>
			<td class=ms-banner width=99% nowrap ID="HBN100">
				
	<table id="zz1_TopNavigationMenu" class="ms-topNavContainer zz1_TopNavigationMenu_5 zz1_TopNavigationMenu_2" cellpadding="0" cellspacing="0" border="0">
	<tr>
		<td onmouseover="Menu_HoverRoot(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="zz1_TopNavigationMenun0"><table class="ms-topnav zz1_TopNavigationMenu_4 ms-topnavselected zz1_TopNavigationMenu_10" cellpadding="0" cellspacing="0" border="0" width="100%">
			<tr>
				<td style="white-space:nowrap;"><a class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3 ms-topnavselected zz1_TopNavigationMenu_9" href="/default.aspx" accesskey="1" style="border-style:none;font-size:1em;">Home</a></td>
			</tr>
		</table></td><td style="width:0px;"></td><td style="width:0px;"></td><td onmouseover="Menu_HoverRoot(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="zz1_TopNavigationMenun1"><table class="ms-topnav zz1_TopNavigationMenu_4" cellpadding="0" cellspacing="0" border="0" width="100%">
			<tr>
				<td style="white-space:nowrap;"><a class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3" href="http://ru-s-mosc-por01/Portfolios/Personal.aspx" style="border-style:none;font-size:1em;">My Account</a></td>
			</tr>
		</table></td><td style="width:0px;"></td>
	</tr>
</table>
	
			
		
				
			</td>
			<td class=ms-banner>&nbsp;&nbsp;</td>
			<td valign=bottom align=right style="position:relative;bottom:0;left:0;">
			 <table cellpadding=0 cellspacing=0 border=0>
			  <tr>
			   <td>
				<table height=100% class="ms-siteaction" cellpadding=0 cellspacing=0>
				 <tr>
					   <td class="ms-siteactionsmenu" id="siteactiontd">
					   
						
						<span style="display:none"><menu type='ServerMenu' id="zz8_SiteActionsMenuMain" largeIconMode="true"><ie:menuitem id="zz9_MenuItem_Create" type="option" iconSrc="/_layouts/images/Actionscreate.gif" onMenuClick="window.location = '/_layouts/create.aspx';" text="Create" description="Add a new library, list, or web page to this website." menuGroupId="100"></ie:menuitem><ie:menuitem id="zz10_MenuItem_Settings" type="option" iconSrc="/_layouts/images/ActionsSettings.gif" onMenuClick="window.location = '/_layouts/settings.aspx';" text="Site Settings" description="Manage site settings on this site." menuGroupId="100"></ie:menuitem></menu></span><div><div><span title="Open Menu"><div  id="zz11_SiteActionsMenu_t" class="" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-siteactionsmenuhover" hoverInactive="" onclick=" MMU_Open(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0);" foa="MMU_GetMenuFromClientId('zz11_SiteActionsMenu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><a id="zz11_SiteActionsMenu" accesskey="/" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('zz8_SiteActionsMenuMain'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'), event);" onclick=" MMU_Open(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=zz11_SiteActionsMenu,TEMPLATECLIENTID=zz8_SiteActionsMenuMain" serverclientid="zz11_SiteActionsMenu">Site Actions<img src="/_layouts/images/blank.gif" border="0" alt="Use SHIFT+ENTER to open the menu (new window)."/></a><img align="absbottom" src="/_layouts/images/whitearrow.gif" alt="" /></div></span></div></div>
					</td>
				 </tr>
				</table>
			   </td>
			  </tr>
			 </table>
			</td>
		   </tr>
		  </table>
		
	 </TD>
	</TR>
	
		

	
	
	
	
	<TR height="100%"><TD><TABLE width="100%" height="100%" cellspacing="0" cellpadding="0">
	<tr>
	 <td class="ms-titlearealeft" id="TitleAreaImageCell" valign="middle" nowrap><div style="height:100%" class="ms-titleareaframe">
	<IMG SRC="/_layouts/images/blank.gif" width=1 height=1 alt="">
</div></td>
	 <td class="ms-titleareaframe" id="TitleAreaFrameClass">
	  
<table cellpadding=0 height=100% width=100% cellspacing=0>
 <tr><td class="ms-areaseparatorleft"><IMG SRC="/_layouts/images/blank.gif" width=1 height=1 alt=""></td></tr>
</table>

	 </td>
	<td valign=top id="onetidPageTitleAreaFrame" class='ms-pagetitleareaframe' nowrap>
	  <table id="onetidPageTitleAreaTable" cellpadding=0 cellspacing=0 width=100% border="0">
	   <tr>
		<td valign="top" class="ms-titlearea">
		 
			<span id="ctl00_PlaceHolderTitleBreadcrumb_ContentMap"><span><a class="ms-sitemapdirectional" href="/">ALPS - Air Liquide Procurement System</a></span><span> &gt; </span><span><a class="ms-sitemapdirectional" href="/Lists/Suppliers/AllItems.aspx">Vendors</a></span><span> &gt; </span><span class="ms-sitemapdirectional">New Item</span></span> &nbsp;
		 
		</td>
	   </tr>
	   <tr>
		<td height=100% valign=top ID=onetidPageTitle class="ms-pagetitle">
		  <h2 class="ms-pagetitle">
			
	<A HREF="/Lists/Suppliers/AllItems.aspx">Vendors</A>: New Item

		  </h2>
		</td>
	   </tr>
	  </table>
	 </td>
	 <td class="ms-titlearearight">
		
		
<div class='ms-areaseparatorright'><IMG SRC="/_layouts/images/blank.gif" width=8 height=100% alt=""></div>
</td>
	</tr>

	<TR>
	  <TD class="ms-leftareacell" valign=top height=100% id="LeftNavigationAreaCell">
	   <table class=ms-nav width=100% height=100% cellpadding=0 cellspacing=0>
		<tr>
		 <td>
		  <TABLE height="100%" class=ms-navframe CELLPADDING=0 CELLSPACING=0 border="0">
		   <tr valign="top">
			<td width="4px"><IMG SRC="/_layouts/images/blank.gif" width=4 height=1 alt=""></td>
			<td valign="top" width="100%">
			  
			  
			  
			  
			  
			</td>
		   </tr>
		   <tr><td colspan=2><IMG SRC="/_layouts/images/blank.gif" width=138 height=1 alt=""></td></tr>
		  </TABLE>
		 </td>
		 <td></td>
		</tr>
	   </table>
	  </TD>
	  <td>
<div class='ms-areaseparatorleft'><IMG SRC="/_layouts/images/blank.gif" width=8 height=100% alt=""></div>
</td>
	  <td class='ms-bodyareacell' valign="top">
		<PlaceHolder id="ctl00_MSO_ContentDiv">
		<table id="MSO_ContentTable" width=100% height="100%" border="0" cellspacing="0" cellpadding="0" class="ms-propertysheet">
		  <tr>
			 <td class='ms-bodyareaframe' valign="top" height="100%">
			   <A name="mainContent"></A>
				
				
<table cellpadding=0 cellspacing=0 id="onetIDListForm">
 <tr>
  <td>
 <table width="100%" cellpadding="0" cellspacing="0" border="0">
	<tr>
		<td id="MSOZoneCell_WebPartWPQ1" vAlign="top"><table TOPLEVEL border="0" cellpadding="0" cellspacing="0" width="100%">
			<tr>
				<td valign="top"><div WebPartID="e8d59bc2-1631-49df-b271-c1e96498a5fb" HasPers="false" id="WebPartWPQ1" width="100%" allowDelete="false" style="" >
		<SPAN id='part1'>
			
		
	
			
<table class="ms-formtoolbar" cellpadding="2" cellspacing="0" border="0" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_toolBarTbltop" width="100%" >
  <tr>


	<td width="99%" class="ms-toolbar" nowrap><IMG SRC="/_layouts/images/blank.gif" width=1 height=18 alt=""></td>


		<td class="ms-toolbar" nowrap="true">
	
		<TABLE cellpadding=0 cellspacing=0 width=100%><TR><TD align="right"  width=100% nowrap>
			<input type="button" name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbltop$RightRptControls$ctl01$ctl00$diidIOSaveItem" value="OK" onclick="if (!PreSaveItem()) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbltop$RightRptControls$ctl01$ctl00$diidIOSaveItem&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_toolBarTbltop_RightRptControls_ctl01_ctl00_diidIOSaveItem" accesskey="O" class="ms-ButtonHeightWidth" target="_self" />
		</TD> </TR> </TABLE>
	
		</td>
	<td class=ms-separator> </td>
		<td class="ms-toolbar" nowrap="true">
	
		<TABLE cellpadding=0 cellspacing=0 width=100%><TR><TD align="right" width=100% nowrap>
			<input type="button" name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbltop$RightRptControls$ctl02$ctl00$diidIOGoBack" value="Cancel" onclick="STSNavigate('http://ru-s-mosc-por01/Lists/Suppliers/AllItems.aspx');return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbltop$RightRptControls$ctl02$ctl00$diidIOGoBack&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_toolBarTbltop_RightRptControls_ctl02_ctl00_diidIOGoBack" accesskey="C" class="ms-ButtonHeightWidth" target="_self" />
		</TD> </TR> </TABLE>
	
		</td>
	
  </tr>
</table>

			
		
	
			<TABLE class="ms-formtable" style="margin-top: 8px;" border=0 cellpadding=0 cellspacing=0 width=100%>
			
			
			
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal Vendor Name</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal Vendor Name"
			 FieldInternalName="Title"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl00$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl00_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Legal Vendor Name" class="ms-long" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Name in Russian</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Name in Russian"
			 FieldInternalName="NameRus"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl01$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl01_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Name in Russian" class="ms-long" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Name in English</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Name in English"
			 FieldInternalName="NameEng"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl02$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl02_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Name in English" class="ms-long" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Supplier Country Code</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Supplier Country Code"
			 FieldInternalName="SupplierCountryCode"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl03$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="2" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl03_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Supplier Country Code" class="ms-long" /><br>
	</span>
			Код страны
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal/Privacy</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal/Privacy"
			 FieldInternalName="Organization"
			 FieldType="SPFieldChoice"
		  -->
			<span dir="none"><select name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl04$ctl00$ctl00$ctl04$ctl00$DropDownChoice" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl04_ctl00_ctl00_ctl04_ctl00_DropDownChoice" title="Legal/Privacy" class="ms-RadioText">
					<option selected="selected" value="legal entity">legal entity</option>
					<option value="individual">individual</option>

				</select><br></span>
			Признак юридического / физического лица. Значение «Да» означает, что контрагент является юридическим лицом.
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal Address</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal Address"
			 FieldInternalName="LegalSupplierAddress"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl05$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="100" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl05_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Legal Address" class="ms-long" /><br>
	</span>
			Юридический адрес контрагента
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal City</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal City"
			 FieldInternalName="LegalSupplierCity"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl06$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="50" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl06_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Legal City" class="ms-long" /><br>
	</span>
			Город (юр.адрес) контрагента
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal ZIP</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal ZIP"
			 FieldInternalName="LegalSupplierZIP"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl07$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Legal ZIP" class="ms-long" /><br>
	</span>
			Индекс (юр. адрес) контрагента
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal Country in Russian</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal Country in Russian"
			 FieldInternalName="Legal_x0020_Country"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl08$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" value="Россия" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl08_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Legal Country in Russian" class="ms-long" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Legal Country</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Legal Country"
			 FieldInternalName="Country"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl09$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" value="Russia" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl09_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Legal Country" class="ms-long" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Actual Address</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Actual Address"
			 FieldInternalName="ActualSupplierAddress"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl10$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="100" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl10_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Actual Address" class="ms-long" /><br>
	</span>
			Фактический адрес контрагента
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Actual City</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Actual City"
			 FieldInternalName="ActualSupplierCity"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl11$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="50" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl11_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Actual City" class="ms-long" /><br>
	</span>
			Фактический город контрагента
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Actual ZIP</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Actual ZIP"
			 FieldInternalName="ActualSupplierZIP"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl12$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl12_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Actual ZIP" class="ms-long" /><br>
	</span>
			Индекс (факт. адрес) контрагента
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Phone</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Phone"
			 FieldInternalName="Phone"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl13$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="100" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl13_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Phone" class="ms-long" /><br>
	</span>
			Телефон контрагента
			
		</TD>
	</TR>
</tr></table>
				
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Hermes Code</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Hermes Code"
			 FieldInternalName="Hermes_x0020_Code"
			 FieldType="SPFieldText"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl42$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl42_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Hermes Code" class="ms-long" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>ALV supplier</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="ALV supplier"
			 FieldInternalName="ALV_x0020_supplier"
			 FieldType="SPFieldBoolean"
		  -->
			<span dir="none">
		<input id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl43_ctl00_ctl00_ctl04_ctl00_ctl00_BooleanField" type="checkbox" name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl43$ctl00$ctl00$ctl04$ctl00$ctl00$BooleanField" /><br>
	</span>
			Indicates if supplier belongs to ALV procurment branch
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>StandardPaymentTerm</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="StandardPaymentTerm"
			 FieldInternalName="StandardPaymentTerm"
			 FieldType="SPFieldNumber"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl44$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl44_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="StandardPaymentTerm" class="ms-input" Size="11" style="ime-mode:inactive;" /><br>
	</span>
			
			
		</TD>
	</TR>
	
		<TR>
		<TD nowrap="true" valign="top" width="190px" class="ms-formlabel"><H3 class="ms-standardheader">
		<nobr>Initiator</nobr>
	</H3></TD>
		<TD valign="top" class="ms-formbody" width="400px">
		<!-- FieldName="Initiator"
			 FieldInternalName="Initiator"
			 FieldType="SPFieldUser"
		  -->
			<span dir="none">
		<input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$HiddenUserFieldValue" type="hidden" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_HiddenUserFieldValue" />
		<span id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField" class="ms-usereditor" NoMatchesText="&lt;No Matching Names>" MoreItemsText="More Names..." RemoveText="Remove" value="" allowEmpty="1" ShowEntityDisplayTextInTextBox="0" EEAfterCallbackClientScript=""><input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$UserField$hiddenSpanData" type="hidden" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_hiddenSpanData" /><input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$UserField$OriginalEntities" type="hidden" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_OriginalEntities" value="&lt;Entities />" /><input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$UserField$HiddenEntityKey" type="hidden" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_HiddenEntityKey" /><input name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$UserField$HiddenEntityDisplayText" type="hidden" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_HiddenEntityDisplayText" /><table id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_OuterTable" class="ms-usereditor" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;">
					<tr valign="bottom">
						<td valign="top" style="width:90%;"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;table-layout:fixed;">
							<tr>
								<td><div id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_upLevelDiv" TabIndex="0" onFocusIn="this._fFocus=1;saveOldEntities('ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_upLevelDiv')" onClick="onClickRw(true, true);" onChange="updateControlValue('ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField')" onFocusOut="this._fFocus=0;" onPaste="dopaste();" AutoPostBack="0" class="ms-inputuserfield" onDragStart="canEvt(event);" onKeyup="return onKeyUpRw('ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField');" onCopy="docopy();" onBlur="updateControlValue('ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField')" Title="People Picker" onKeyDown="return onKeyDownRw(this, 'ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField', 3, true, event);" contentEditable="true" style="width: 100%; word-wrap: break-work;overflow-x: hidden; background-color: window; color: windowtext;" name="upLevelDiv"></div><textarea name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$UserField$downlevelTextBox" rows="1" cols="20" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_downlevelTextBox" class="ms-input" onKeyDown="return onKeyDownRw(this, 'ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField', 3, true, event);" onKeyUp="onKeyUpRw('ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField');" Title="People Picker" AutoPostBack="0" style="width:100%;display: none;position: absolute; "></textarea></td>
							</tr>
						</table></td><td align="right" valign="top" nowrap="true" style="padding-left:5px;"><a id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_checkNames" title="Check Names" onclick="var arg=getUplevel('ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField');var ctx='ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField';EntityEditorSetWaitCursor(ctx);WebForm_DoCallback('ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$ctl04$ctl45$ctl00$ctl00$ctl04$ctl00$ctl00$UserField',arg,EntityEditorHandleCheckNameResult,ctx,EntityEditorHandleCheckNameError,true);return false;" href="javascript:"><img title="Check Names" src="/_layouts/images/checknames.gif" alt="Check Names" style="border-width:0px;" /></a>&nbsp;<a id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_browse" accesskey="B" title="Browse" onclick="__Dialog__ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField(); return false;" href="javascript:"><img title="Browse" src="/_layouts/images/addressbook.gif" alt="Browse" style="border-width:0px;" /></a></td>
					</tr><tr>
						<td colspan="3"><span id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_ctl04_ctl45_ctl00_ctl00_ctl04_ctl00_ctl00_UserField_errorLabel" class="ms-error"></span></td>
					</tr>
				</table>
	
			
			
			
<table class="ms-formtoolbar" cellpadding="2" cellspacing="0" border="0" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_toolBarTbl" width="100%" >
  <tr>


	<td width="99%" class="ms-toolbar" nowrap><IMG SRC="/_layouts/images/blank.gif" width=1 height=18 alt=""></td>


		<td class="ms-toolbar" nowrap="true">
	
		<TABLE cellpadding=0 cellspacing=0 width=100%><TR><TD align="right"  width=100% nowrap>
			<input type="button" name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbl$RightRptControls$ctl00$ctl00$diidIOSaveItem" value="OK" onclick="if (!PreSaveItem()) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbl$RightRptControls$ctl00$ctl00$diidIOSaveItem&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_toolBarTbl_RightRptControls_ctl00_ctl00_diidIOSaveItem" accesskey="O" class="ms-ButtonHeightWidth" target="_self" />
		</TD> </TR> </TABLE>
	
		</td>
	<td class=ms-separator> </td>
		<td class="ms-toolbar" nowrap="true">
	
		<TABLE cellpadding=0 cellspacing=0 width=100%><TR><TD align="right" width=100% nowrap>
			<input type="button" name="ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbl$RightRptControls$ctl01$ctl00$diidIOGoBack" value="Cancel" onclick="STSNavigate('http://ru-s-mosc-por01/Lists/Suppliers/AllItems.aspx');return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$m$g_e8d59bc2_1631_49df_b271_c1e96498a5fb$ctl00$toolBarTbl$RightRptControls$ctl01$ctl00$diidIOGoBack&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))" id="ctl00_m_g_e8d59bc2_1631_49df_b271_c1e96498a5fb_ctl00_toolBarTbl_RightRptControls_ctl01_ctl00_diidIOGoBack" accesskey="C" class="ms-ButtonHeightWidth" target="_self" />
		</TD> </TR> </TABLE>
	
		</td>
	
  </tr>
</table>

			</td></tr></TABLE>
		</SPAN>
		
	</div></td>
			</tr>
		</table></td>
	</tr>
</table>
 <IMG SRC="/_layouts/images/blank.gif" width=590 height=1 alt="">
  </td>
 </tr>
</table>

			 </td>
		  </tr>
		</table>
		</PlaceHolder>
	  </td>
	  <td class="ms-rightareacell">
<div class='ms-areaseparatorright'><IMG SRC="/_layouts/images/blank.gif" width=8 height=100% alt=""></div>
</td>
	</TR>
<tr>
	<td class="ms-pagebottommarginleft"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td>
	<td class="ms-pagebottommargin"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td>
	<td class="ms-bodyareapagemargin"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td>
	<td class="ms-pagebottommarginright"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td>
</tr>
	</TABLE></TD></TR>
  </TABLE>
  
		
  
   <input type="text" name="__spDummyText1" style="display:none;" size=1/>
   <input type="text" name="__spDummyText2" style="display:none;" size=1/>
  

</form>

...
Рейтинг: 0 / 0
11.04.2014, 12:07
    #38612181
yanik
Гость
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Заполнение web-формы из excel
В отлитчике обнаружил, что возникает ошибка

перед циклом.
...
Рейтинг: 0 / 0
Форумы / Visual Basic [игнор отключен] [закрыт для гостей] / Заполнение web-формы из excel / 11 сообщений из 11, страница 1 из 1
Целевая тема:
Создать новую тему:
Автор:
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]