Search

You searched for the word(s): userid:690770

Matching Posts

  • From C# to VB

    Hi. I have only worked on C# projects so far. But now i have to work on a project that is being done VB.NET. Could anybody suggest a book which could make it easier for me to make the transition?
    Posted to Visual Basic .NET (Forum) by silasjohn on 11/5/2007
  • Disabling forms controls or menu items

    Hi, I m currently building a workflow based application. the data is basically passed from people in one role to people in other roles. my requirement is that once a person has passed on the data for editing etc. to another person, then i) either remove the link for that particular webform from the menu items. i m using a sitemapdatasource and menu control for the menu ii) or make all the controls in that particular form read-only. i would like to know which one of the above is a better approach
    Posted to Security (Forum) by silasjohn on 10/16/2007
  • Bulk insert using procedures

    Currently i am working on a project which requires data from an excel sheet to be transferred to tables in the database. Now at a time this excel sheet may contain a minimum of 1000 rows and can easily go upto 5000. As per our current design, we are planning to translate the data from the excel sheet into a Dataset first and from the dataset we will have to insert into the database on a row by row basis by calling a procedure in the database. i am using a procedure because i have some amount of logic
    Posted to Architecture (Forum) by silasjohn on 9/21/2007
  • Re: Adding Custom Fields in Membership Provider in ASP.NET 2.0

    Use the profile properties then. Thats the best way.
    Posted to Architecture (Forum) by silasjohn on 7/13/2007
  • Re: how do i pass the generic list?

    private static List<Customer> BuildCustomers(SqlDataReader reader) { if (reader.HasRows) { List<Customer> customerList = new List<Customer>(); while (reader.Read()) { Customer cust = new Customer(); cust.CustomerID = reader[ "CustomerID" ].ToString(); cust.CompanyName = reader[ "CompanyName" ].ToString(); cust.ContactName = reader[ "ContactName" ].ToString(); customerList.Add(cust); } return customerList; } return null ; }
    Posted to C# (Forum) by silasjohn on 7/12/2007
  • Re: Hosting Different Tiers on Different Servers

    You have three options 1.Web Services 2. Remoting 3. Enterprise Sevices ( COM+ ) The following article will give a better idea pn what to choose http://msdn2.microsoft.com/en-us/library/8119f66k.aspx
    Posted to Architecture (Forum) by silasjohn on 7/12/2007
  • Re: Adding Custom Fields in Membership Provider in ASP.NET 2.0

    guess i struck something finally. Ths should help. http://aspnet.4guysfromrolla.com/articles/060706-1.aspx
    Posted to Architecture (Forum) by silasjohn on 7/11/2007
  • Re: Delete Architecture for Entity Object

    Just correct me if i got it wrong. 1. You want to delete Customers. Customer details are shown on gridview. 2. When you delete from gridview, to see the updated data, you need to query Db again? You want to avoid this and come up with some other method.
    Posted to Architecture (Forum) by silasjohn on 7/11/2007
  • Re: Adding Custom Fields in Membership Provider in ASP.NET 2.0

    you will have to write a custom provider. Try this link http://www.15seconds.com/issue/050216.htm
    Posted to Architecture (Forum) by silasjohn on 7/11/2007
  • Re: Dynamic matrix of textbox

    If you were just displaying data on the gridview, then you could just add a method to the Dataset or Custom Entity class to pivot. But with just textboxes, guess it will be a more difficult.
    Posted to Architecture (Forum) by silasjohn on 7/11/2007
Page 1 of 18 (175 items) 1 2 3 4 5 Next > ... Last »