0

Back in the days of VB 4 / VB 5, using data bound controls and data connection wizards would add alot of overhead to the application.

I wanted to know if using the "Configure Data Source" wizard in ASP.Net 3.5 adds alot of unneeded overhead to the webpage?

Thanks

1 Answer 1

1

No, it doesn't. Adding the control to the page modifies your designer class code by one line (declaring the object). The wizard simply modifies your markup to include all the necessary properties and attributes that you specify.

This is easily verified by just viewing the changes that adding and configuring a datasource control makes to your page and your designer class.

Nothing the wizard does would be any different than what you would do by declaring the control programatically in your code. It's just a convenient GUI way of quickly generating your declarative markup.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.