i have 1 new .aspx page where i run on my local host it can run normally but when i run at another computer it show the error:

here is my connection:
anyone know please help me...thanks...

here is my connection:
Code:
conn5 = New SqlConnection(ConnStr)
cmd5 = New SqlCommand(lsSQLSTRX, conn5)
adp5 = New SqlDataAdapter(cmd5)
lds5 = New DataSet
DT5 = New DataTable
adp5.Fill(lds5, "x")
DT5 = lds5.Tables(0)
ConnStr = "data source=" & Trim(lsSAL_SERVER) & ";initial catalog=" & Trim(lsSAL_DATABASE) & ";password=" & Trim(lsSAL_PASSWORD) & ";user id=" & Trim(lsSAL_USERID) & ";"
Comment