Search

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

Matching Posts

  • Re: how to check Var is empty or null in Linq

    if (selectedProduct.Count() == 0) { //add logic... }
    Posted to Getting Started (Forum) by Bapha on 6/15/2009
  • Re: custom membership provider - descrypting DES passwords

    ok, thanks for the reply. Maybe I am reading the bugzilla code (see first post) incorrectly, but I thought the salt is randomly created and then added to the password. Does that seem correct to you?
    Posted to Security (Forum) by Bapha on 5/6/2008
  • Re: How to use membership and/or DLINQ with MySQL?

    This is the best MySQL membership tutorial I have found - http://blog.nolanbailey.com/2008/03/08/mysql-aspnet-membership-and-role-provider/194
    Posted to Security (Forum) by Bapha on 5/5/2008
  • custom membership provider - descrypting DES passwords

    Hi .net gurus (hopefully ) I am trying to write a custom membership provider for Bugzilla. Generally this is going fine, but I am having trouble decrypting the Bugzilla passwords. I understand that these are encrypted using DES encryption. I have tried passing the I am using the following to (try to) decrypt - however without success: 1 private static byte [] bytes = ASCIIEncoding.ASCII.GetBytes( "e3" ); // I have tried passing the first 2, 4, and 8 characters of the encrypted password
    Posted to Security (Forum) by Bapha on 5/5/2008
  • Re: web part on mySQL

    MySQL Connector/Net 5.2 comes with Membership providers. With this it is very simple to set up Membership and roles in MySQL, and then you can use WebParts. This tutorial should give you all the info you need http://blog.nolanbailey.com/2008/03/08/mysql-aspnet-membership-and-role-provider/194
    Posted to Web Parts and Personalization (Forum) by Bapha on 5/5/2008
  • Re: Web Application Administration Tool - An error was encountered. Please return to the previous page and try again.

    Hi I am also having this problem. I am using visual studio 2008. Havent tried to impliment any providers yet - just wanted to check out the website admin. Anyone know how to fix this?
    Posted to Security (Forum) by Bapha on 5/2/2008
  • Re: xml datalayer - dynamic xml / business objects mapping

    Hi Peter Yes I could use it, and I probably will have to. However I do not have a presentation layer as I am developing a web service, and the datasource for the service is dynamic xml. I am trying to develop this web service using tiers - business logic, data layer etc. This is a new approach to development for me - but from what I have been reading it looks like a more correct way to develop. I have created some .xsd files that represent the structure of the xml, and from these I have used XSDClassGen
    Posted to XML and XmlDataSource Control (Forum) by Bapha on 11/16/2007
  • a data access layer using xml as the datasource, rather than a sql database

    Hi I have been reading and learning a lot from the tutorial about how build and use a DAL (see http://www.asp.net/learn/data-access/tutorial-01-cs.aspx ). However the tutorial uses a sql database. I am working on a project where the data is coming from a dynamic xml file - the schema doesnt change but the data is frequently changing. Can someone point me in the right direction for how I could build a DAL using xml as the datasource? Kind regards
    Posted to Getting Started (Forum) by Bapha on 11/16/2007
  • xml datalayer - dynamic xml / business objects mapping

    Hi I have a project where I will be taking an existing web application ( written in perl ). It currently outputs HTML but this will be changed to output xml. I need to grap this xml (serialized data) and then make that available in a web service. The web service uses a data layer. Typically a data layer is for mapping sql tables to business object classes - and there are several tools available to generate the code from the tables, along with the CRUD methods. However I cant find any examples of
    Posted to XML and XmlDataSource Control (Forum) by Bapha on 11/16/2007
    Filed under: xml
  • confused, frustrated - trying to use sample code

    Hi all I am trying to use the sample code from http://samples.gotdotnet.com/quickstart/howto/doc/Xml/DataSetMapXSDSchema.aspx I can get the sample to ran fine in a console application. What I now want to do is to, in a web service, iterate through a xsd file and return a list of the tables in the xsd file. My class for reading the xsd file is called "datatables" and this is how I am calling it: 1 [WebMethod] 2 public ArrayList DataTables() 3 { 4 Data.Tables.DataTables tables = new Data
    Posted to Getting Started (Forum) by Bapha on 10/27/2007
Page 1 of 4 (32 items) 1 2 3 4 Next >