Click here to Skip to main content
15,900,906 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to update dropdownlist.selectedvalue into database? Pin
edwin7nice24-Jul-08 5:26
edwin7nice24-Jul-08 5:26 
GeneralRe: How to update dropdownlist.selectedvalue into database? Pin
Sherin Iranimose24-Jul-08 5:38
Sherin Iranimose24-Jul-08 5:38 
QuestionHow to add a contol(adrotator) in which pictures keep changing without refreshing the page?? Pin
diksha_g24-Jul-08 3:08
diksha_g24-Jul-08 3:08 
AnswerRe: How to add a contol(adrotator) in which pictures keep changing without refreshing the page?? Pin
windhopper24-Jul-08 20:46
windhopper24-Jul-08 20:46 
AnswerRe: How to add a contol(adrotator) in which pictures keep changing without refreshing the page?? Pin
drahmedgalal25-Jul-08 23:45
drahmedgalal25-Jul-08 23:45 
GeneralRe: How to add a contol(adrotator) in which pictures keep changing without refreshing the page?? Pin
Anudeep Jaiswal1-Aug-08 0:58
Anudeep Jaiswal1-Aug-08 0:58 
QuestionHow to provide database Search Functionality? Pin
vannapragada24-Jul-08 2:36
vannapragada24-Jul-08 2:36 
AnswerRe: How to provide database Search Functionality? Pin
Imran Khan Pathan24-Jul-08 2:58
Imran Khan Pathan24-Jul-08 2:58 
This is not a quite simple as I think.but may be this suggestion helps you
Follow these three steps

Store Procedure
First Step : Create temporary table
CREATE TABLE #TempTable
	(
	  ID int IDENTITY PRIMARY KEY,
	  Column1 nvarchar(100),
          Column2 nvarchar(100),
	)



Second Setep: Insert matched records from other tables into temporary table

INSERT INTO #TempTable(column1,column2) 
Select column1,column2 from myTable1 where column3=yourSearchingText

INSERT INTO #TempTable(column1,column2) 
Select column1,column2 from myTable2 where column3=yourSearchingText

INSERT INTO #TempTable(column1,column2) 
Select column1,column2 from myTable3 where column3=yourSearchingText


Third Step : Select all records from temp table

SELECT * FROM   #TempTable


Best of luck
Regards
Khan

please don't forget to vote on the post that helped you.

GeneralRe: How to provide database Search Functionality? Pin
Paddy Boyd24-Jul-08 3:29
Paddy Boyd24-Jul-08 3:29 
AnswerRe: How to provide database Search Functionality? Pin
www.Developerof.NET24-Jul-08 20:47
www.Developerof.NET24-Jul-08 20:47 
QuestionJavascript to convet english to french Pin
bommareddy20024-Jul-08 2:33
bommareddy20024-Jul-08 2:33 
AnswerRe: Javascript to convet english to french Pin
J4amieC24-Jul-08 4:34
J4amieC24-Jul-08 4:34 
AnswerRe: Javascript to convet english to french Pin
Christian Graus24-Jul-08 11:23
protectorChristian Graus24-Jul-08 11:23 
QuestionHow to store the userId and password in session and Killing the session? Pin
mcmilan24-Jul-08 2:11
mcmilan24-Jul-08 2:11 
AnswerRe: How to store the userId and password in session and Killing the session? Pin
Imran Khan Pathan24-Jul-08 2:38
Imran Khan Pathan24-Jul-08 2:38 
AnswerRe: How to store the userId and password in session and Killing the session? Pin
Ryomin24-Jul-08 3:05
professionalRyomin24-Jul-08 3:05 
AnswerRe: How to store the userId and password in session and Killing the session? Pin
deepthy.p.m24-Jul-08 20:03
deepthy.p.m24-Jul-08 20:03 
QuestionSystem.Diagnostics.Process.start Pin
Dot Net rookie24-Jul-08 1:58
Dot Net rookie24-Jul-08 1:58 
AnswerRe: System.Diagnostics.Process.start Pin
Imran Khan Pathan24-Jul-08 2:24
Imran Khan Pathan24-Jul-08 2:24 
GeneralRe: System.Diagnostics.Process.start Pin
Dot Net rookie24-Jul-08 2:34
Dot Net rookie24-Jul-08 2:34 
GeneralRe: System.Diagnostics.Process.start Pin
Imran Khan Pathan24-Jul-08 2:41
Imran Khan Pathan24-Jul-08 2:41 
GeneralRe: System.Diagnostics.Process.start Pin
Dot Net rookie24-Jul-08 3:03
Dot Net rookie24-Jul-08 3:03 
GeneralRe: System.Diagnostics.Process.start Pin
Paddy Boyd24-Jul-08 3:31
Paddy Boyd24-Jul-08 3:31 
GeneralRe: System.Diagnostics.Process.start Pin
Dot Net rookie24-Jul-08 3:39
Dot Net rookie24-Jul-08 3:39 
QuestionIIS: How can I redirect form one application to another from the iis? Pin
Nada Adel24-Jul-08 1:15
Nada Adel24-Jul-08 1:15 

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.