Skip to content

PSKit - FormView initial thoughts

Fri Apr 29 2005

I've been playing with the Personal Website Starter Kit a little bit lately. One thing that I didn't like about it from the start was that the content in the default.aspx was largely static, so I set out to make it a little more dynamic. After a little digging in the whidbey quickstarts I decided that a FormView  looked like the way to go.

I'm trying to keep any modifications simple, so I created a really simple table that would cover the very basic needs of the sections that are shown on the default.aspx:

Content
ContentID
Heading
Content
IsVisible

I then created the basic CRUD procedures that would go with this table, dropped a FormView onto the default.aspx, and created a SqlDataSource to supply it with data. Now, let me say that it is very...what's the word? liberating? to be able to do most of the work in the designer without worrying about the designer nuking stuff. It's almost there. One thing that I thought was missing was the ability to specify one of the connectionStrings from the web.config file as the connection string source - you've got to switch to source view to do that (afaict). Also, the friggin thing doesn't want to work unless I supply a DefaultValue for each <asp:ControlParameter/> in the markup - so what happens when my ID changes?

One other thing that I'd like to see (I know, give an inch, take a mile:) would be the ability to use the same SqlDataSource for many FormViews. As the default.aspx is laid out now, there are 3, maybe 4 areas that would be good candidates for being populated from the Content table outlined above. So if I had FormView2, FormView3, and FormView4, I would like to associate them all with the same SqlDataSource and vary the output based on a different ContentID for each. Right now, it seems like there is a 1:1 mapping between each SqlDataSource and FormView (as the ControlParameter has a ControlID associated with it.) Maybe I should try using a different type of parameter?

More to come...I'll get this eventually :)

💾 May the source be with you. v3.2.419