Avatar of newbie27
newbie27Flag for United Kingdom of Great Britain and Northern Ireland

asked on 

Microsoft VBScript runtime error '800a01a8'

Hello Experts,
I have been trying since a while now to figure out why this is occurring on the live server, the same code works just fine on the development.
Amazes me further as it was working just fine until yesterday when they have changed the DNS settings. I believe the only change on the server and it started giving me this error
Microsoft VBScript runtime  error '800a01a8'
Object required: 'robjNode'
Can someone please advice/help in finding out the issue for me?
Many thanks for your help.
Regards
S
ASPVB ScriptXML

Avatar of undefined
Last Comment
newbie27
Avatar of newbie27
newbie27
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

I am getting error when I call the userTree function on the asp page

<%=UserTree%>

the XML is not getting returned from the funobjMakeRequest and hence it is failing further ...

Set objTreeDOM = funobjMakeRequest("act=get&table=users&id=" & mobjRequest.QueryString("accFilter") & "&groups=" & mobjRequest.QueryString("accTree"))


Public Function UserTree(ByVal vblnAllowGroupAdd)
		'On Error Resume Next
		
		Dim objTreeDOM, objNode
		Set objTreeDOM = funobjMakeRequest("act=get&table=users&id=" & mobjRequest.QueryString("accFilter") & "&groups=" & mobjRequest.QueryString("accTree"))
		'Debug.Print "Start Time (" & mblnDisplayExcluded & ")" & Now()
		
		Set objNode = objTreeDOM.documentElement.selectSingleNode("//group[@name='" & mobjUser.Item("GroupName") & "']")
		
		 
		
		UserTree = "<table><tr><td class=""accTreeOuterTable"" valign=""top""><nobr>" & funsWriteTree(objNode, "", 0, vblnAllowGroupAdd) & "</nobr></td></tr></table>"
		'Debug.Print "EndTime (" & mblnDisplayExcluded & ")" & Now()
		Set objTreeDOM = Nothing
		
		If Err.Number <> 0 Then 
			LogError Err, "UserTree"
			errNo = Err.Number: errSource = Err.Source: errDesc = Err.Description
			
			mobjResponse.Write "An unexpected error has occured in the Class. Please report this to the administrator.<BR>" & _
			"DETAILS: Number:" & Erl & " " & errNo & " Source:" & errSource & " Description:" & errDesc & " " & "UserTree"
		End If
		On Error GoTo 0
			
	End Function
 
 
Private Function funobjMakeRequest(ByVal vstrRequestString)
		
		Dim objHTTP
		Dim strXML
		
		On Error Resume Next
		Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
		
		objHTTP.open "POST", mstrServerURL, False ', authuser, authpassword
		If mblnDiag Then
			WriteMsg ("OPEN for POST : " & mstrServerURL & vbCrLf & "POST DATA : " & vstrRequestString)
		End If
			
		objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
		objHTTP.send vstrRequestString
		strXML = objHTTP.responseText
	
		If strXML = "" Then strXML = "<error>Couldn't open the file</error>"
		Set objHTTP = Nothing
		
		Set funobjMakeRequest = CreateObject("MSXML2.DOMDocument")
		funobjMakeRequest.async = False
		funobjMakeRequest.LoadXML strXML
		
 
		If Err.Number <> 0 Then 
			LogError Err, "funobjMakeRequest"
			errNo = Err.Number: errSource = Err.Source: errDesc = Err.Description
			
			mobjResponse.Write "An unexpected error has occured in the Class. Please report this to the administrator.<BR>" & _
			"DETAILS: Number:" & errNo & " Source:" & errSource & " Description:" & errDesc & " " & strResponse
		End If
		
		On Error GoTo 0
		
	End Function
	
 
 
Private Function funsWriteTree(ByRef robjNode, ByVal vsIndents, ByVal vlLevel, ByVal vblnAllowGroupAdd)
		Dim sName, strGroupID, objSubNode, s, arrFilter, i, blnExpand, strExpandGroupString
		Dim strAddGroupHref
		
		strGroupID = robjNode.selectSingleNode("GroupName").Text
		sName = robjNode.selectSingleNode("GroupName").Text
		If mintGroupLevel = 0 Then mintGroupLevel = 3
		blnExpand = False
		arrFilter = Split(mstrEditFilter & ",", ",")
		For i = 0 To UBound(arrFilter)
			If arrFilter(i) <> "" Then
				If Len(arrFilter(i)) < 30 Then
					If InStr(LCase(robjNode.XML), "name=""" & LCase(Trim(arrFilter(i))) & """") > 0 Then blnExpand = True
				Else
					If InStr(LCase(robjNode.XML), "name=""" & LCase(Trim(arrFilter(i)))) > 0 Then blnExpand = True
				End If
			End If
		Next
		
		strExpandGroupString = mstrEditFilter
		If InStr("," & strExpandGroupString & ",", "," & Left(sName, 30) & ",") < 1 Then strExpandGroupString = strExpandGroupString & "," & Left(sName, 30)
		If Left(strExpandGroupString, 1) = "," Then strExpandGroupString = Mid(strExpandGroupString, 2)
		
		If vlLevel < mintGroupLevel And vblnAllowGroupAdd Then
			strAddGroupHref = "<a title=""Add a new sub group"" href=""" & mstrThisPage & "accFilter=" & mstrEditFilter & "&accGroup=_NEW_&accParentGroup=" & sName & "&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """>Add Group</a>|"
		Else
			strAddGroupHref = ""
		End If
		
		If InStr(robjNode.XML, "<user") > 0 Or blnExpand Then
			
			Dim strContractGroup, strTree
			strContractGroup = strExpandGroupString
			strTree = "t/t2p.gif"
			If blnExpand Then
				strContractGroup = Replace("," & strExpandGroupString, "," & Left(sName, 30), "")
				strContractGroup = Replace(strContractGroup, ",,", ",")
				If Right(strContractGroup, 1) = "," Then strContractGroup = Left(strContractGroup, Len(strContractGroup) - 1)
				If Left(strContractGroup, 1) = "," Then strContractGroup = Mid(strContractGroup, 2)
				strTree = "t/t2m.gif"
			End If
				
			s = vsIndents & "<a href=""" & mstrThisPage & "accFilter=" & strContractGroup & "&accUser=&accGroup=&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """><img class=""accTreeImage"" src=""" & strTree & """ border=""0"" /></a><img class=""accTreeImage"" src=""t/i_fo.gif"" border=""0"" />" & _
				"<a class=""accTreeGroupLink"" href=""" & mstrThisPage & "accFilter=" & mstrEditFilter & "&accUser=&accGroup=" & sName & "&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """>" & sName & "</a> [" & _
				strAddGroupHref & _
				"<a class=""accTreeUserLink"" href=""" & mstrThisPage & "accFilter=" & mstrEditFilter & "&accUser=_NEW_&accGroup=" & sName & "&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """>Add</a>]<br />"
			
			vsIndents = vsIndents & "<img class=""accTreeImage"" src=""t/t1.gif"" />"
		
			For Each objSubNode In robjNode.selectNodes("user")
			'  to display users as excluded in the tree will take a lot of extra processing time.
			' ie each user in tree will have to be queried in the access file system LJG.
			' By default it does not do this but if it is needed then the Public Property
			' DisplayExcluded needs to set to True.
			' LJG 10/09/2003
			'mblnDisplayExcluded = False
				Dim strUserImgSrc
				strUserImgSrc = "i_u.gif"
				If mblnDisplayExcluded Then
					Dim objUsertemp, objExclude
					Set objUsertemp = funobjMakeRequest("act=get&table=user&id=" & objSubNode.Text)
					Set objExclude = objUsertemp.selectSingleNode("//_ExcludeUser")
					If Not (objExclude Is Nothing) Then
						If Trim(objExclude.Text & "") = "" Then objExclude.Text = "False"
						If CBool(objExclude.Text) Then strUserImgSrc = "i_ux.gif"
					End If
					Set objUsertemp = Nothing
					Set objExclude = Nothing
				End If
				'If objSubNode.Text =
				s = s & vsIndents & "<img class=""accTreeImage"" src=""t/t2.gif"" /><img class=""accTreeImage"" src=""t/" & strUserImgSrc & """ border=""0"" />" & _
					"<a class=""accTreeUserLink"" href=""" & mstrThisPage & "accFilter=" & mstrEditFilter & "&accUser=" & objSubNode.Text & "&accGroup=&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """>" & objSubNode.Text & "</a><br />"
			Next
			
		ElseIf mstrEditShowAllGroups = "True" Then
		
			s = vsIndents & "<a href=""" & mstrThisPage & "accFilter=" & strExpandGroupString & "&accUser=&accGroup=&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """><img class=""accTreeImage"" src=""t/t2p.gif"" border=""0"" /></a><img class=""accTreeImage"" src=""t/i_fc.gif"" border=""0"" />" & _
				"<a class=""accTreeGroupLink"" href=""" & mstrThisPage & "accFilter=" & mstrEditFilter & "&accUser=&accGroup=" & sName & "&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """>" & sName & "</a> [" & strAddGroupHref & _
				"<a class=""accTreeUserLink"" href=""" & mstrThisPage & "accFilter=" & mstrEditFilter & "&accUser=_NEW_&accGroup=" & sName & "&accTree=" & mstrEditTree & "&accShowAllGroups=" & mstrEditShowAllGroups & """>Add</a>]<br />"
	
				vsIndents = vsIndents & "<img class=""accTreeImage"" src=""t/t1.gif"" />"
		
		End If	 

Open in new window

Avatar of newbie27
newbie27
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

funobjMakeRequest is returning appropriate XML back but for some it but for some reason objNode is not getting set as an object

 Set objNode = objTreeDOM.documentElement.selectSingleNode("//group[@name='" & mobjUser.Item("GroupName") & "']")
               
xml response.
------------
 
<group><_FriendlyName>ehausAdmin</_FriendlyName><_LicensedSeats>5</_LicensedSeats><UserName></UserName><_Authority></_Authority><_Title></_Title><_FirstName></_FirstName><_Surname></_Surname><_Email></_Email><_Branches></_Branches><_Funds></_Funds><_MaxUsers></_MaxUsers><_ExpiryDate></_ExpiryDate><_EAN></_EAN><_ExcludeUser></_ExcludeUser><_GroupFund></_GroupFund><vx_order_no></vx_order_no><_DepositHistory></_DepositHistory><_PermittedDownloads>1006181E.PDF
7505091E.PDF
7505012E.PDF
9506021E.PDF
2306041E.PDF
4306061E.PDF
8105171E.PDF
8106022E.PDF
1206011E.PDF
8106021E.PDF
5806013E.PDF
4306081E.PDF
9606041E.PDF
1206031E.PDF
0107101E.PDF
4305211E.PDF
8107021E.PDF</_PermittedDownloads><_CompanyName></_CompanyName><_ContactName></_ContactName><_ContactPhone></_ContactPhone><_ContactEmail></_ContactEmail><_County></_County><_Country></_Country><_Currency>GBP</_Currency><_PostCode></_PostCode><_PermittedDownloadsDI>5L4S0FM8MSHD
5L4W033Z9QTB
5L9RHLRML96K
5LGJS68VDMLX
5LGMRBHDH926</_PermittedDownloadsDI><_PermittedDownloadsDIArchive>5L9LMQSBDG9X
5L4S3MJZ8M5H
5L4W3Q5XX446
5L4VXPXHDDLW</_PermittedDownloadsDIArchive><_SubProductsDiscount>5</_SubProductsDiscount><_NonSubProductsDiscount>5</_NonSubProductsDiscount><_AccountNo></_AccountNo><_AccountType></_AccountType><_AddressLine1></_AddressLine1><_AddressLine2></_AddressLine2><_AddressLine3></_AddressLine3><_AdminNotes>5L9VKXQXJLLW
5LGH7JFX1LZN
5LGPBVP8WGVB
5LMM9CNBVV35
5LGH2Z8B8JXT
5LGKZT13VQNS
5LGQP5133ZLW
5LGJSMZ6CLVB
5LGJSMTJFM48
5LGJSMZXCGQ4
5L9ZHR5J39Q7
5LGHCN0T64MX
5L9Z9BKN4MHB
5LGH7J8M1FKD
5L4W96X1PSWG
5LGKZT1N745K
5L4W8R52NKVC
5L4W970MGVKH
5L4W3Q5XX446
5L9DRP9XFS6K</_AdminNotes><GroupName>ehausAdmin</GroupName><_Town></_Town><_OECDProductsDiscount>5</_OECDProductsDiscount></group>
 
<properties>
<property name="GroupName">
	<PropertyName>GroupName</PropertyName>
	<DataType>Text</DataType>
	<Required>True</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule>\w</ValidationRule>
	<ValidationMessage>Alpha numeric characters only.</ValidationMessage>
 
</property>
<property name="_CompanyName">
	<PropertyName>_CompanyName</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
 
</property>
<property name="_AccountNo">
	<PropertyName>_AccountNo</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
 
</property>
<property name="_AccountType">
	<PropertyName>_AccountType</PropertyName>
	<DataType>List</DataType>
	<Required>False</Required>
	<AllowedValues>ACCO
ACCT
CC
	</AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
 
</property>
<property name="_ContactName">
	<PropertyName>_ContactName</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
	<AllowedValues>
	</AllowedValues>
	<ValidationRule></ValidationRule>
 
	<ValidationMessage></ValidationMessage>
</property>
<property name="_ContactPhone">
	<PropertyName>_ContactPhone</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
	<AllowedValues>
	</AllowedValues>
 
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_ContactEmail">
	<PropertyName>_ContactEmail</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
	<AllowedValues>
 
	</AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_AddressLine1">
	<PropertyName>_AddressLine1</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
 
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_AddressLine2">
	<PropertyName>_AddressLine2</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
 
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_AddressLine3">
	<PropertyName>_AddressLine3</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
 
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_Town">
	<PropertyName>_Town</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
 
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_County">
	<PropertyName>_County</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
 
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_PostCode">
	<PropertyName>_PostCode</PropertyName>
	<DataType>Text</DataType>
	<Required>False</Required>
 
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_Country">
	<PropertyName>_Country</PropertyName>
	<DataType>List</DataType>
	<Required>False</Required>
 
	<AllowedValues>United Kingdom
Afghanistan
Albania
Algeria
American Samoa
Andorra
Angola
Anguilla
Antartica
Antigua and Barbuda
Argentina
Armenia
Aruba
Ascension Is.
Australia
Austria
Azerbaijan
Bahamas
Bahrain
Bangladesh
Barbados
Belarus
Belgium
Belize
Benin
Bermuda
Bhutan
Bolivia
Bosnia and Herzegowina
Botswana
Bouvet Island
Brazil
British Indian Ocean
British Virgin Islands
Brunei Darussalam
Bulgaria
Burkina Faso
Burundi
Cambodia
Cameroon
Canada
Cape Verde
Cayman Islands
Central African Rep.
Chad
Chile
China
Christmas Island
Cocos (Keeling) Is.
Colombia
Comoros
Congo
Cook Islands
Costa Rica
Cote D'Ivoire
Croatia
Cuba
Cyprus
Czech Republic
Denmark
Djibouti
Dominica
Dominican Republic
East Timor
Ecuador
Egypt
El Salvador
Equatorial Guinea
Eritrea
Estonia
Ethiopia
Falkland Islands
Faroe Islands
Fiji
Finland
France
France Metropolitan
French Guiana
French Polynesia
French Southern Ter
Gabon
Gambia
Georgia
Germany
Ghana
Gibraltar
Greece
Greenland
Grenada
Guadeloupe
Guam
Guatemala
Guernsey, C.I.
Guinea
Guinea-Bissau
Guyana
Haiti
Heard and McDonald Is.
Honduras
Hong Kong
Hungary
Iceland
India
Indonesia
Iran
Iraq
Ireland
Isle of Man
Israel
Italy
Jamaica
Japan
Jersey, C.I.
Jordan
Kazakhstan
Kenya
Kiribati
Korea, Dem Peoples Rep
Korea, Rep of
Kuwait
Kyrgyzstan
Lao Peoples Dem Rep
Latvia
Lebanon
Lesotho
Liberia
Libyan Arab Jamahiriya
Liechtenstein
Lithuania
Luxemborg
Macau
Macedonia
Madagascar
Malawi
Malaysia
Maldives
Mali
Malta
Marshall Islands
Martinique
Mauritania
Mauritius
Mayotte
Mexico
Micronesia
Moldova, Republic of
Monaco
Mongolia
Montserrat
Morocco
Mozambique
Myanmar
Namibia
Nauru
Nepal
Netherland Antilles
Netherlands
New Caledonia
New Zealand
Nicaragua
Niger
Nigeria
Niue
Norfolk Island
N. Mariana Islands
Norway
Oman
Pakistan
Palau
Panama
Papua New Guinea
Paraguay
Peru
Philippines
Pitcairn
Poland
Portugal
Puerto Rico
Qatar
Reunion
Romania
Russian Federation
Rwanda
Saint Helena
Saint Kitts and Nevis
Saint Lucia
Saint Pierre &amp; Miquelon
Saint Vincent and Grenadines
Samoa
San Marino
Sao Tome &amp; Principe
Saudi Arabia
Senegal
Seychelles
Sierra Leone
Singapore
Slovakia
Slovenia
Solomon Islands
Somalia
South Africa
S.Georgia and S.Sandwich Is.
Spain
Sri Lanka
Sudan
Suriname
Svalbard and Jan Mayen Is.
Swaziland
Sweden
Switzerland
Syrian Arab Republic
Taiwan
Tajikistan
Tanzania, United Rep.
Thailand
Togo
Tokelau
Tonga
Trinidad and Tobago
Tunisia
Turkey
Turkmenistan
Turks and Caicos Is.
Tuvalu
Uganda
Ukraine
United Arab Emirates
United Kingdom
United States
US Minor Outlying Is.
US Virgin Islands
Uruguay
Uzbekistan
Vanuatu
Vatican City State
Venezuela
Viet Nam
Wallis and Fatuna Is.
Western Sahara
Yemen, Republic of
Yugoslavia
Zaire
Zambia
Zimbabwe</AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_Branches">
	<PropertyName>_Branches</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_Funds">
	<PropertyName>_Funds</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
 
<property name="_MaxUsers">
	<PropertyName>_MaxUsers</PropertyName>
	<DataType>Text</DataType>
 
	<Required>False</Required>
	<AllowedValues>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
25
30
50
100</AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_EAN">
	<PropertyName>_EAN</PropertyName>
	<DataType>Text</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_AdminNotes">
	<PropertyName>_AdminNotes</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_GroupFund">
	<PropertyName>_GroupFund</PropertyName>
	<DataType>Text</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_DepositHistory">
	<PropertyName>_DepositHistory</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_SubProductsDiscount">
	<PropertyName>_SubProductsDiscount</PropertyName>
	<DataType>Text</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_NonSubProductsDiscount">
	<PropertyName>_NonSubProductsDiscount</PropertyName>
	<DataType>Text</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_OECDProductsDiscount">
	<PropertyName>_OECDProductsDiscount</PropertyName>
	<DataType>Text</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_PermittedDownloads">
	<PropertyName>_PermittedDownloads</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_PermittedDownloadsDI">
	<PropertyName>_PermittedDownloadsDI</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_PermittedDownloadsDIArchive">
	<PropertyName>_PermittedDownloadsDIArchive</PropertyName>
	<DataType>Memo</DataType>
 
	<Required>False</Required>
	<AllowedValues></AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
<property name="_Currency">
	<PropertyName>_Currency</PropertyName>
	<DataType>List</DataType>
 
	<Required>True</Required>
	<AllowedValues>GBP
EUR
USD
JPY
</AllowedValues>
	<ValidationRule></ValidationRule>
	<ValidationMessage></ValidationMessage>
</property>
 
</properties>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of purplepomegranite
purplepomegranite
Flag of United Kingdom of Great Britain and Northern Ireland image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of newbie27
newbie27
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

hello purplepomegranite:

thanks that has kind of worked for me !

Avatar of newbie27
newbie27
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

thanks
ASP
ASP

Active Server Pages (ASP) is Microsoft’s first server-side engine for dynamic web pages. ASP’s support of the Component Object Model (COM) enables it to access and use compiled libraries such as DLLs. It has been superseded by ASP.NET, but will be supported by Internet Information Services (IIS) through at least 2022.

82K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo