Option Strict On disallows late binding

  • Thread starter Thread starter Seema
  • Start date Start date
S

Seema

I am trying to convert a web application from 1.1 to 2.0 or above.
when I compile my solution it gives me error in the following piece of
code that

Option Strict On disallows late binding. The line of code is

Dim sqlConn As New
SqlConnection(ConfigurationSettings.GetConfig("IntranetSettings")
("ConnectionAsset"))

I really appreciater your help in advance.
 
I am trying to convert a web application from 1.1 to 2.0 or above.
when I compile my solution it gives me error in the following piece of
code that

Option Strict On disallows late binding. The line of code is

Dim sqlConn As New
SqlConnection(ConfigurationSettings.GetConfig("IntranetSettings")
("ConnectionAsset"))

Are you missing an Import?

Arne
 
Back
Top