Re: Alias name for folder
Perhaps a database lookup table would solve your problems.
Re: Alias name for folder
i dont have database to work with this task
any one have idea how to implement this with an xml file???
Thanks and Regards
Vinay kumar
Re: Alias name for folder
Create a strongly typed data set, with a single table that has two columns (DirectoryName,Alias). Setup DirectoryName as the primary key. Use the native dataset.read and dataset.write methods to store retrieve data, and the native datatable.find method to find an alias for a given directory name.
Re: Alias name for folder
ok thank u
so should i store that data in xml file?
Thanks and regards
Vinay Kumar
Re: Alias name for folder
Would most definately store it in an XML file if a database wasn't available, because of .NET's built in capablility to serialize/deserilaze XML, plus you've got the benefits of strongly typing it, and setting up a key.
Re: Alias name for folder
Got the solution
Thanks for the answer