What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?
Answer Posted / x
select Distinct [Subject ID], [Date of Birth],[Gender],
[Race] from
(
select vm1.spid as [Subject ID],
(case when objd1.objectdesignationtypeid = 4 then
vmd1.fieldvalue end) as [Date of Birth],
(case when objd1.objectdesignationtypeid = 8 then
vmd1.fieldvalue end) as [Gender],
(case when objd1.objectdesignationtypeid = 9 then
vmd1.fieldvalue end) as [Race]
from Recon.dbo.AAA999809_Visitmodule
vm1,Recon.dbo.AAA999809_Visitmoduledetail vmd1,
Recon.dbo.recon_objectdesignation objd1
where vm1.vuid = vmd1.vuid and
vmd1.objectid = objd1.objectid
and vmd1.objectid is not null and objd1.objectid is not null
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain what is clr?
COM+ Used ________________ Isolation Level
What is the advantage of using Windows authentication in a Web application?
Which dll handles the request of .aspx page?
How to do state management in ASP.NET?
How to find last error which occurred?
What is AutoEventWireup attribute for ?
What is application and session in asp.net?
Difference between response.redirect and server.transfer?
What do you mean by serialize?
How can you ensure a permanent cookie?
Explain server-side scripting and client-side scripting.
What is http protocol and how it works?
What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?
What is ispostback property?