Wrox Programmer Forums
|
ASP.NET 1.x and 2.0 Application Design Application design with ASP.NET 1.0, 1.1, and 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.x and 2.0 Application Design section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 16th, 2007, 03:15 AM
Registered User
 
Join Date: Feb 2007
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default help me

I am getting exception :
System.InvalidOperationException: The ConnectionString property has not been initialized.
I am using BLL to work on.




 dbcon objDbCon=new dbcon();
            DataSet ds=new DataSet();
            string sql;

            if (ViewState["sortfield"]!=null)
                sql="select * from [product details] where category_id=" + catid + " order by " + ViewState["sortfield"].ToString();
            else
                sql="select * from [product details] where category_id=" + catid;
            objDbCon.getData(sql, ref ds,"[product details]"); objDbCon.dispose();
            objDbCon=null;
            if (ds.Tables["[product details]"].Rows.Count>0)
            {
                grdItemlist.DataSource=ds;
                grdItemlist.DataMember="[product details]";
                grdItemlist.PageSize=5;
                grdItemlist.DataBind();
            }
            else
            {
                Errmsg.Text="No items in this category";

            }


 
Old February 18th, 2007, 12:23 AM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

The: The ConnectionString property has not been initialized. error means that you are providing a blank connection string to your connection object or that you are not providing one at all.


================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
Technical Editor for: Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html

Discussion:
http://p2p.wrox.com/topic.asp?TOPIC_ID=56429









Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.