Click here to Skip to main content
15,895,283 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to send email from asp.net 2.0 Page help is needed with configuration of SMTP Server Pin
Rameez Raja22-Oct-08 2:08
Rameez Raja22-Oct-08 2:08 
AnswerRe: How to send email from asp.net 2.0 Page help is needed with configuration of SMTP Server Pin
eyeseetee22-Oct-08 2:38
eyeseetee22-Oct-08 2:38 
QuestionStrange JavaScript Pin
Atul Kharecha22-Oct-08 2:00
Atul Kharecha22-Oct-08 2:00 
AnswerRe: Strange JavaScript Pin
NeverHeardOfMe22-Oct-08 2:13
NeverHeardOfMe22-Oct-08 2:13 
GeneralRe: Strange JavaScript Pin
Atul Kharecha22-Oct-08 2:21
Atul Kharecha22-Oct-08 2:21 
QuestionHow can You trap a request come from another website to your website in ASP.net Pin
gautamamit822-Oct-08 1:40
gautamamit822-Oct-08 1:40 
AnswerRe: How can You trap a request come from another website to your website in ASP.net Pin
N a v a n e e t h22-Oct-08 1:59
N a v a n e e t h22-Oct-08 1:59 
Questionthrows an error that the cursor already exists: How to sholve this problem Pin
Member 465900122-Oct-08 1:39
Member 465900122-Oct-08 1:39 
alter proc CopyObject

(@ObjectId int,

@NewParentId int)

as


declare @NewId int,

@NewName varchar


select @NewId = max(Id) + 1 from Object

select @NewName = [Name] + 'copy' from [Object] where Id = @ObjectId


-- copy object

INSERT INTO [Object]

([Id]

,[Name]

,[ParentId]

select @NewId,

@NewName,

@NewParentId

from [Object]

where Id = @ObjectId


-- copy children and set their parent to the newly created object

declare c cursor fast_forward for

select Id

from [Object]

where ParentId = @ObjectId


declare @ChildId int


open c

fetch next from c into @ChildId


while @@fetch_status = 0

begin

exec CopyObject

@ObjectID = @ChildId,

@NewParentId = @NewId


fetch next from c into @ChildId

end

close c

deallocate c

But htis throws an error that the cursor already exists:

Raghvendra

AnswerRe: throws an error that the cursor already exists: How to sholve this problem Pin
N a v a n e e t h22-Oct-08 2:01
N a v a n e e t h22-Oct-08 2:01 
GeneralRe: throws an error that the cursor already exists: How to sholve this problem Pin
Member 465900122-Oct-08 2:14
Member 465900122-Oct-08 2:14 
GeneralRe: throws an error that the cursor already exists: How to sholve this problem Pin
Member 465900122-Oct-08 2:15
Member 465900122-Oct-08 2:15 
GeneralRe: throws an error that the cursor already exists: How to sholve this problem Pin
eyeseetee22-Oct-08 2:37
eyeseetee22-Oct-08 2:37 
AnswerRe: throws an error that the cursor already exists: How to sholve this problem Pin
Paddy Boyd22-Oct-08 2:17
Paddy Boyd22-Oct-08 2:17 
GeneralRe: throws an error that the cursor already exists: How to sholve this problem Pin
Member 465900122-Oct-08 2:34
Member 465900122-Oct-08 2:34 
GeneralRe: throws an error that the cursor already exists: How to sholve this problem Pin
Ashfield22-Oct-08 3:14
Ashfield22-Oct-08 3:14 
QuestionCreating a .txt file in a web form (Urgent) Pin
srinivaskonijeti22-Oct-08 0:13
srinivaskonijeti22-Oct-08 0:13 
AnswerRe: Creating a .txt file in a web form (Urgent) Pin
Shyam Bharath22-Oct-08 0:28
Shyam Bharath22-Oct-08 0:28 
AnswerRe: Creating a .txt file in a web form (Urgent) Pin
N a v a n e e t h22-Oct-08 2:02
N a v a n e e t h22-Oct-08 2:02 
QuestionMultiple add/delete/update on a Gridview Pin
samerh22-Oct-08 0:13
samerh22-Oct-08 0:13 
Questionhow to access .cs page values in aspx page???? Pin
sarala.s21-Oct-08 23:44
sarala.s21-Oct-08 23:44 
AnswerRe: how to access .cs page values in aspx page???? Pin
meeram39521-Oct-08 23:48
meeram39521-Oct-08 23:48 
AnswerRe: how to access .cs page values in aspx page???? Pin
Abhijit Jana21-Oct-08 23:58
professionalAbhijit Jana21-Oct-08 23:58 
QuestionHow to Retrieving data to DropDownLists in the UpdatePanel? Pin
meeram39521-Oct-08 23:44
meeram39521-Oct-08 23:44 
AnswerRe: How to Retrieving data to DropDownLists in the UpdatePanel? Pin
Sandeep Akhare22-Oct-08 1:28
Sandeep Akhare22-Oct-08 1:28 
GeneralRe: How to Retrieving data to DropDownLists in the UpdatePanel? Pin
meeram39522-Oct-08 1:44
meeram39522-Oct-08 1:44 

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.