Click here to Skip to main content
16,006,594 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Why ? Pin
Abhijit Jana17-Nov-09 19:48
professionalAbhijit Jana17-Nov-09 19:48 
AnswerRe: string manipulation in c# Pin
Tripathi Swati17-Nov-09 18:29
Tripathi Swati17-Nov-09 18:29 
GeneralRe: string manipulation in c# Pin
uglyeyes17-Nov-09 18:41
uglyeyes17-Nov-09 18:41 
GeneralRe: string manipulation in c# Pin
Abhijit Jana17-Nov-09 18:43
professionalAbhijit Jana17-Nov-09 18:43 
GeneralRe: string manipulation in c# Pin
uglyeyes17-Nov-09 18:45
uglyeyes17-Nov-09 18:45 
GeneralRe: string manipulation in c# Pin
Abhijit Jana17-Nov-09 18:47
professionalAbhijit Jana17-Nov-09 18:47 
GeneralRe: string manipulation in c# [modified] Pin
uglyeyes18-Nov-09 13:58
uglyeyes18-Nov-09 13:58 
GeneralRe: string manipulation in c# Pin
uglyeyes18-Nov-09 16:42
uglyeyes18-Nov-09 16:42 
never mind this helped

public static string GetFirstFewWords(string input, int numberWords)
       {
           if (input.Split(new char[] { ' ' },
                 StringSplitOptions.RemoveEmptyEntries).Length > numberWords)
           {
               // Number of words we still want to display.
               int words = numberWords;
               // Loop through entire summary.
               for (int i = 0; i < input.Length; i++)
               {
                   // Increment words on a space.
                   if (input[i] == ' ')
                   {
                       words--;
                   }
                   // If we have no more words to display, return the substring.
                   if (words == 0)
                   {
                       return input.Substring(0, i);
                   }
               }
               return string.Empty;
           }
           else
           {
               return input;
           }
       }

QuestionDo we have a little nice. Net framework, such as: Castle, NHiBernate Pin
lrsoft200917-Nov-09 17:54
lrsoft200917-Nov-09 17:54 
AnswerRe: Do we have a little nice. Net framework, such as: Castle, NHiBernate Pin
lrsoft200917-Nov-09 18:07
lrsoft200917-Nov-09 18:07 
GeneralRe: Do we have a little nice. Net framework, such as: Castle, NHiBernate Pin
Abhijit Jana17-Nov-09 18:17
professionalAbhijit Jana17-Nov-09 18:17 
AnswerRe: Do we have a little nice. Net framework, such as: Castle, NHiBernate Pin
sashidhar17-Nov-09 18:19
sashidhar17-Nov-09 18:19 
QuestionChange Password controll probme Pin
Sagar.H.Mistry17-Nov-09 17:50
Sagar.H.Mistry17-Nov-09 17:50 
AnswerRe: Change Password controll probme Pin
sashidhar17-Nov-09 18:01
sashidhar17-Nov-09 18:01 
AnswerRe: Change Password controll probme Pin
lrsoft200917-Nov-09 18:02
lrsoft200917-Nov-09 18:02 
QuestionProblem with Form based authentication Pin
Maxdd 717-Nov-09 17:29
Maxdd 717-Nov-09 17:29 
AnswerRe: Problem with Form based authentication Pin
sashidhar17-Nov-09 17:46
sashidhar17-Nov-09 17:46 
GeneralRe: Problem with Form based authentication Pin
Maxdd 717-Nov-09 19:19
Maxdd 717-Nov-09 19:19 
GeneralRe: Problem with Form based authentication Pin
sashidhar17-Nov-09 20:05
sashidhar17-Nov-09 20:05 
AnswerRe: Problem with Form based authentication Pin
AlexeiXX318-Nov-09 6:01
AlexeiXX318-Nov-09 6:01 
GeneralRe: Problem with Form based authentication Pin
Maxdd 718-Nov-09 6:15
Maxdd 718-Nov-09 6:15 
Questionhow can i view crystal report on an apche server, not IIS on windows server 2003 ? Pin
amran imu17-Nov-09 15:39
amran imu17-Nov-09 15:39 
AnswerRe: how can i view crystal report on an apche server, not IIS on windows server 2003 ? Pin
Christian Graus17-Nov-09 15:42
protectorChristian Graus17-Nov-09 15:42 
GeneralRe: how can i view crystal report on an apche server, not IIS on windows server 2003 ? Pin
amran imu17-Nov-09 15:58
amran imu17-Nov-09 15:58 
GeneralRe: how can i view crystal report on an apche server, not IIS on windows server 2003 ? Pin
Christian Graus17-Nov-09 15:59
protectorChristian Graus17-Nov-09 15:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.