I have a textfile, with different properties with semi colon as a divider between them, I was thinking about just making some easy way to hard code the source to the text file, and do a line.split and also add member with the details provided. Anyone seen some neat guide about this? I find just how to use textboxes and doesnt give much of a help more then I should use Member.MakeNew
Is the goal to import members from your delimited file? If so why not try the excellent CMSImport? The free edition will do this and will handle up to 500 records.
Well in that case you could always do it manually. Personally I think it's a small investment for the amount of time it will save :)
I think Member.MakeNew is deprecated but will still work, otherwise you should be able to use the standard ASP.NET Membership Provider commands - see this wiki for example.
Thought about Member.MakeNew
Hello,
I have a textfile, with different properties with semi colon as a divider between them, I was thinking about just making some easy way to hard code the source to the text file, and do a line.split and also add member with the details provided. Anyone seen some neat guide about this? I find just how to use textboxes and doesnt give much of a help more then I should use Member.MakeNew
Hi,
Is the goal to import members from your delimited file? If so why not try the excellent CMSImport? The free edition will do this and will handle up to 500 records.
-Tom
Great news, though I got like 1000 records to add, dont afford buying that. :-(
Well in that case you could always do it manually. Personally I think it's a small investment for the amount of time it will save :)
I think Member.MakeNew is deprecated but will still work, otherwise you should be able to use the standard ASP.NET Membership Provider commands - see this wiki for example.
-Tom
Hint split the file in 2 (500 records each) and it will work ;-)
is working on a reply...