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
What is global.asax file used for?
Explain managed code an un-managed code.
Can you explain architecture of your project ?
What is data cache in sql server?
Explain the difference between or and orelse?
How to disable validator control by client side JavaScript?
Explain the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
Can we use a static function with a non-static variable?
what is the difference between response.write() and response.output.write()?
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
How does session authentication work?
Explain the different types of assemblies?
What are cookies in asp.net?