views:

145

answers:

1

I want to do the following but in VB:

<%=var t = ViewData.Model%>

+2  A: 
<% Dim t = ViewData.Model %>

VB doesn't use a special keyword for implicitly typed variables... just Dim.

Stephen M. Redd