G
Guest
How can I avoid late binding with the directive strict = tru
My ASP .net-file looks like this
<%@DEBUG=true TRACE=true Strict=false EXPLICIT=true%
..
dim footerValues as Arra
footerValues = split("val1,val2,val3,val4,val5", ","
..
dim strDept as String = footerValues(0
dim strDeptLink as String = footerValues(1
dim strName as String = footerValues(2
dim strNameLink as String = footerValues(3
dim strEMailAddress as String = footerValues(4
The compiler says it doesn't support late binding! But how can I avoid these error messages
My ASP .net-file looks like this
<%@DEBUG=true TRACE=true Strict=false EXPLICIT=true%
..
dim footerValues as Arra
footerValues = split("val1,val2,val3,val4,val5", ","
..
dim strDept as String = footerValues(0
dim strDeptLink as String = footerValues(1
dim strName as String = footerValues(2
dim strNameLink as String = footerValues(3
dim strEMailAddress as String = footerValues(4
The compiler says it doesn't support late binding! But how can I avoid these error messages