Click here to Skip to main content
15,917,176 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Getting sessions to ASMX webservice [modified] Pin
Matt Cavanagh21-Jul-10 9:30
Matt Cavanagh21-Jul-10 9:30 
Questionproblem writing in doc file Pin
Dhyanga21-Jul-10 5:39
Dhyanga21-Jul-10 5:39 
AnswerRe: problem writing in doc file Pin
Yusuf21-Jul-10 6:06
Yusuf21-Jul-10 6:06 
GeneralRe: problem writing in doc file [modified] Pin
Dhyanga21-Jul-10 6:14
Dhyanga21-Jul-10 6:14 
QuestionJava script reset problem Pin
immu521-Jul-10 5:37
immu521-Jul-10 5:37 
AnswerRe: Java script reset problem Pin
Yusuf21-Jul-10 6:18
Yusuf21-Jul-10 6:18 
AnswerRe: Java script reset problem Pin
Not Active21-Jul-10 8:53
mentorNot Active21-Jul-10 8:53 
GeneralRe: Java script reset problem Pin
immu521-Jul-10 8:59
immu521-Jul-10 8:59 
GeneralRe: Java script reset problem Pin
Not Active21-Jul-10 9:26
mentorNot Active21-Jul-10 9:26 
QuestionASP.NET Crystal Report Issue Pin
Hema Bairavan21-Jul-10 1:31
Hema Bairavan21-Jul-10 1:31 
AnswerRe: ASP.NET Crystal Report Issue Pin
Ennis Ray Lynch, Jr.21-Jul-10 4:00
Ennis Ray Lynch, Jr.21-Jul-10 4:00 
QuestionConnect to ms-sqlserver by using ADO.Net Pin
kimvisal21-Jul-10 0:20
kimvisal21-Jul-10 0:20 
AnswerRe: Connect to ms-sqlserver by using ADO.Net Pin
Ankur\m/21-Jul-10 1:10
professionalAnkur\m/21-Jul-10 1:10 
AnswerRe: Connect to ms-sqlserver by using ADO.Net Pin
Sandeep Mewara21-Jul-10 5:45
mveSandeep Mewara21-Jul-10 5:45 
AnswerRe: Connect to ms-sqlserver by using ADO.Net Pin
Prosanta Kundu online21-Jul-10 19:18
Prosanta Kundu online21-Jul-10 19:18 
QuestionWhile Loop Problem in SQL Pin
jintalPatel20-Jul-10 22:46
jintalPatel20-Jul-10 22:46 
DECLARE @spot SMALLINT
DECLARE @str VARCHAR(8000)
DECLARE @strQuery nVARCHAR(1000)
DECLARE @sql VARCHAR(8000)
DECLARE @cslist VARCHAR(8000)
declare @Count int
set @Count=0
set @cslist='CallLog1230,CallLog2230'

MainLoop:
WHILE @cslist <> ''
BEGIN
SET @spot = CHARINDEX(',', @cslist)
print @spot
IF @spot>0
BEGIN
SET @str = CAST(LEFT(@cslist, @spot-1) AS varchar)
SET @cslist = RIGHT(@cslist, LEN(@cslist)-@spot)
print @cslist
goto InComing
goto OutGoing
END
ELSE
BEGIN
SET @str = CAST(@cslist AS varchar)
SET @cslist = ''
print @str
if(@Count=0)
Begin
set @Count=1
goto InComing
goto OutGoing
End
Else
goto EndLoop
END
End


InComing:
Begin
print 'IN'
print @str

End




OutGoing:
Begin
print 'OUT'
print @str
goto MainLoop
End



EndLoop:
return





I am not return from the While loop Please help me to find where i am wrong
AnswerRe: While Loop Problem in SQL Pin
Panchal Hardik21-Jul-10 1:08
Panchal Hardik21-Jul-10 1:08 
Questionajax tool Pin
Thanusree Duth20-Jul-10 20:58
Thanusree Duth20-Jul-10 20:58 
AnswerRe: ajax tool Pin
Tej Aj20-Jul-10 21:38
Tej Aj20-Jul-10 21:38 
AnswerRe: ajax tool Pin
Prosanta Kundu online21-Jul-10 19:15
Prosanta Kundu online21-Jul-10 19:15 
QuestionAJAX Control toolkit Modal Popup Extender not working in IE properly, but works in FF Pin
immu520-Jul-10 20:13
immu520-Jul-10 20:13 
AnswerRe: AJAX Control toolkit Modal Popup Extender not working in IE properly, but works in FF Pin
NITIN CHADHA23-Jul-10 23:37
NITIN CHADHA23-Jul-10 23:37 
QuestionIntegrate stock market charts in application Pin
vid nandha20-Jul-10 19:09
vid nandha20-Jul-10 19:09 
AnswerRe: Integrate stock market charts in application Pin
Peace ON20-Jul-10 19:24
Peace ON20-Jul-10 19:24 
GeneralRe: Integrate stock market charts in application Pin
vid nandha20-Jul-10 19:43
vid nandha20-Jul-10 19:43 

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.