I am looking for a keyword generator for .ASPX where it can take a paragraph of SQL dynamic content and count word repetitions through an array, and extract the repeating words with commas after them to plug into the meta keywords tag. While blocking out dead words like "of, his, her, a, the, on, if" from a file I provide. If a two word combo repeats 3 times, it would be consider a keyword. If a single word repeats 5 times, it would also be considered a keyword. I have done this in PHP before with a simple script, but I am not that familiar with the visual studio environment and may take a few days to figure out. If any ASP pro can point me in the right direction, it would be greatly appreciated. Thanks in advance.
Hmm, so you are passing in a string initially public shared function GetMetaFromString(ByVal Str as String) as String then you are extracting each word from the string block: Dim Keywords as String() = Split(Str, " ") then you want to iterate over each string and build another stringarray (2dim) from this with a count of each keyword that exists Or... build a Keyword Class, then build a KeywordCollection class which is List(Of Keyword) Then with the new array or colection you want to sort the collection by keyword desc