Click here to Skip to main content
15,924,507 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: querystring Pin
eyeseetee27-Aug-08 0:35
eyeseetee27-Aug-08 0:35 
GeneralRe: querystring Pin
neilmajithia27-Aug-08 4:07
neilmajithia27-Aug-08 4:07 
AnswerRe: querystring Pin
Bardy8527-Aug-08 1:51
Bardy8527-Aug-08 1:51 
GeneralRe: querystring Pin
Manas Bhardwaj27-Aug-08 2:00
professionalManas Bhardwaj27-Aug-08 2:00 
GeneralRe: querystring Pin
niki_nilu27-Aug-08 3:19
niki_nilu27-Aug-08 3:19 
GeneralRe: querystring Pin
The Web Developer27-Aug-08 20:21
The Web Developer27-Aug-08 20:21 
GeneralRe: querystring Pin
niki_nilu27-Aug-08 22:59
niki_nilu27-Aug-08 22:59 
AnswerRe: querystring Pin
D4ever28-Aug-08 9:08
D4ever28-Aug-08 9:08 
Questionneed help with inner join and oount sql server 2005 and asp.net 2005 Pin
VijayVishwakarma27-Aug-08 0:20
VijayVishwakarma27-Aug-08 0:20 
AnswerRe: need help with inner join and oount sql server 2005 and asp.net 2005 Pin
NeverHeardOfMe27-Aug-08 0:25
NeverHeardOfMe27-Aug-08 0:25 
GeneralRe: need help with inner join and oount sql server 2005 and asp.net 2005 Pin
VijayVishwakarma27-Aug-08 0:49
VijayVishwakarma27-Aug-08 0:49 
GeneralRe: need help with inner join and oount sql server 2005 and asp.net 2005 Pin
Ashfield27-Aug-08 1:23
Ashfield27-Aug-08 1:23 
GeneralRe: need help with inner join and oount sql server 2005 and asp.net 2005 Pin
VijayVishwakarma27-Aug-08 4:31
VijayVishwakarma27-Aug-08 4:31 
GeneralRe: need help with inner join and oount sql server 2005 and asp.net 2005 Pin
Paddy Boyd27-Aug-08 2:31
Paddy Boyd27-Aug-08 2:31 
GeneralRe: need help with inner join and oount sql server 2005 and asp.net 2005 Pin
VijayVishwakarma27-Aug-08 4:33
VijayVishwakarma27-Aug-08 4:33 
QuestionURL Rewriting Pin
srinandan..26-Aug-08 23:53
srinandan..26-Aug-08 23:53 
AnswerRe: URL Rewriting Pin
eyeseetee26-Aug-08 23:56
eyeseetee26-Aug-08 23:56 
Questioncolumn value from multiple rows as one value Pin
vjvjvjvj26-Aug-08 23:40
vjvjvjvj26-Aug-08 23:40 
AnswerRe: column value from multiple rows as one value Pin
Tripathi Swati26-Aug-08 23:59
Tripathi Swati26-Aug-08 23:59 
HI,
This forum is basically for .net
then also

1> Use Cursor for this ---
2>

SET NOCOUNT ON  
SET CONCAT_NULL_YIELDS_NULL ON  
DECLARE @list VARCHAR(8000)  
DECLARE @delm VARCHAR(2)  
SET @delm = ',' 
 
CREATE TABLE #TableToList (value varchar(20))  
INSERT #TableToList VALUES ('swati')  
INSERT #TableToList VALUES ('ABC')  
INSERT #TableToList VALUES ('NIDHI')  
INSERT #TableToList VALUES ('XYZ') 
 
 
SELECT @list = ISNULL(  
        @list + @delm + CAST(value AS VARCHAR(8000)),  
        CAST(value AS VARCHAR(8000))  
    )  
    FROM #TableToList  
    ORDER BY value  
 
DROP TABLE #TableToList  
 
SELECT list = @list


Reasons are not Important but Results are Important.
Swati Tripathi

QuestionRe: column value from multiple rows as one value Pin
vjvjvjvj27-Aug-08 0:44
vjvjvjvj27-Aug-08 0:44 
AnswerRe: column value from multiple rows as one value Pin
Tripathi Swati27-Aug-08 1:12
Tripathi Swati27-Aug-08 1:12 
GeneralRe: column value from multiple rows as one value Pin
vjvjvjvj27-Aug-08 1:28
vjvjvjvj27-Aug-08 1:28 
GeneralRe: column value from multiple rows as one value Pin
Tripathi Swati27-Aug-08 2:33
Tripathi Swati27-Aug-08 2:33 
GeneralRe: column value from multiple rows as one value Pin
vjvjvjvj27-Aug-08 3:00
vjvjvjvj27-Aug-08 3:00 
GeneralRe: column value from multiple rows as one value Pin
Tripathi Swati27-Aug-08 19:30
Tripathi Swati27-Aug-08 19:30 

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.