dim con as new sqlconnnection("connectionsting")
con.open()
dim cm as new sqlcommand("select * from tablename where startdate between @s and @e",con)
cm.parameters.clear()
cm.parameters.addwithvalue("@s",now)
cm.parameters.addwithvalue("@",now.adddays(7))