Click here to Skip to main content
15,911,711 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: string manipulation in c# Pin
Abhijit Jana17-Nov-09 18:38
professionalAbhijit Jana17-Nov-09 18:38 
GeneralWhy ? Pin
Abhijit Jana17-Nov-09 19:03
professionalAbhijit Jana17-Nov-09 19:03 
JokeRe: Why ? Pin
sashidhar17-Nov-09 19:42
sashidhar17-Nov-09 19:42 
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 
this one worked.

DECLARE @mystring VARCHAR(200)
DECLARE @count INT
DECLARE @max INT
DECLARE @space INT
SET @mystring = 'A quick sly fox jumped over the lazy brown dog'
SET @count = 0
SET @max = 7
SET @space = 1
SET NOCOUNT ON
WHILE @count < @max
BEGIN
SELECT @space = CHARINDEX (' ', @mystring , @space + 1)
-- SELECT 'position: ', @space
SET @count = @count + 1
END

SELECT LEFT(@mystring,@space)
SET NOCOUNT OFF
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 
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 

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.