Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BiniamTek

    Anyway to make a DataGrid display only 1 record?

    Right click on the datagrid and choose property builder. On the paging tab choose allow paging and select 1 for the page size.
  2. BiniamTek

    DataGrid Lost

    ksbrace I think what you need is a service pack from microsoft.com for datagrid/data loss. Mine is also in Web.config and it is not removed. I just solved my problem by redoing the whole project again with copy/paste of all my WebForms.
  3. BiniamTek

    UML Visio under Project Menu

    My .NET 2002 at home has UML Visio -> reengineering sub menu under Project. I do not see this at work (2002) nor after I upgraded to 2003 at home. Any advice on how to get it there. Thanks.
  4. BiniamTek

    Visual Studio 2003 Upgrade

    As far as I know this offer is for Pro and up. Please look at microsoft.com for more information
  5. BiniamTek

    DataGrid Lost

    It is visible in designer but lost at run time (in Browser). I believe that the Database is not accessed and I do not know why or how to fix it.
  6. BiniamTek

    login failed for user...

    You might need to download some service packs and .NET Framework files for VS .NET to find ASPNET user as part of your dropdown list for your machine.
  7. BiniamTek

    DataGrid Lost

    I have just upgraded my system from VS .NET 2002 to 2003. When I run my Web App that reads and displays data into a DataGrid from a SQL server, the DataGrid is no longer there. I had deployed my 2002 file and even the http://localhost/xyz is not longer displaying the DataGrid. Did the...
  8. BiniamTek

    Visual Studio 2003 Upgrade

    In case some of you are not aware, microsoft is offering an upgrade from VS .NET 2002 to 2003 for only $29.99. The upgrade works with same packages only (i.e. Pro to Pro).
  9. BiniamTek

    Deploying a private web service

    Hello, I have a similar question. I have a WebApp that uses a SQL db from my machine. How can I deploy the App and the db so that it can be intalled on any machine and run? I do not want to send the source code. For now that is the only way I know how to change the connnection string to the...
  10. BiniamTek

    Refresh a drop down list.

    First of all please accept my apologize. I have some questions that relate to this thread. Since I notice you are both knowledgable in what I want, please allow me to proceed. I am new to ASP and SQL. I have a WebApp that has a button to take me to a form page. On that page: 1. I want to be...
  11. BiniamTek

    Viewing SQL Data in ASP.NET Application

    DLLHelp In SQL Server enterprise Manager, add ASPNET user under users in your database and set the permissions.
  12. BiniamTek

    Filling the Combo Box

    Hi. 1. I have put a combo box on my web form. How do I fill it with data? This is what I tried but nothing happens. in Page_Load if (!IsPostBack) { bttComponent.FillDataSet(custDataSet1); drplCustomer.DataBind(); } 2. I have a DataGrid that has paging enabled. When I press next...
  13. BiniamTek

    ExecuteReader: Connection Property has not been initialized

    Hello, I receive the above error for my line: dr = currentSqlCommand.ExecuteReader(); How do I initialize the connection property? Thanks.
  14. BiniamTek

    Viewing SQL Data in ASP.NET Application

    Thanks. I finally got it. I set the permission in SQL Server and I got what I want. Thanks again for all of you.
  15. BiniamTek

    Viewing SQL Data in ASP.NET Application

    I do not know how but after installing a few service packs, I am now getting the following error. Server Error in '/MyWebForm' Application. -------------------------------------------------------------------------------- Login failed for user 'BROMIOS\ASPNET'. Description: An unhandled...
  16. BiniamTek

    Viewing SQL Data in ASP.NET Application

    I put some LinkButtons and I can see them
  17. BiniamTek

    Viewing SQL Data in ASP.NET Application

    On Page_Load I have myComponent.FillDataSet(myDataSet); myDataGrid.DataBind();
  18. BiniamTek

    I have an ASP.net application with

    I know this is the most obvious place to look, but just in case you forgot: Is SQL Server running?

Part and Inventory Search

Back
Top