Click here to Skip to main content
15,892,005 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: simple chat page Pin
tanzeel851-Jun-11 3:37
tanzeel851-Jun-11 3:37 
QuestionAbout Asp.net MVC Pin
vikram SE31-May-11 7:20
vikram SE31-May-11 7:20 
AnswerRe: About Asp.net MVC Pin
Keith Barrow31-May-11 11:43
professionalKeith Barrow31-May-11 11:43 
GeneralRe: About Asp.net MVC Pin
vikram SE31-May-11 14:21
vikram SE31-May-11 14:21 
QuestionHow can i implement live Search in asp.net project using C# ? Pin
Shama Shahzadi30-May-11 3:23
Shama Shahzadi30-May-11 3:23 
AnswerRe: How can i implement live Search in asp.net project using C# ? Pin
That's Aragon30-May-11 3:48
That's Aragon30-May-11 3:48 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
Shama Shahzadi30-May-11 8:04
Shama Shahzadi30-May-11 8:04 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
That's Aragon30-May-11 18:50
That's Aragon30-May-11 18:50 
ok, let me assume that your project is related the shopping cart and you want to search on following criteria.

1. Product Name
2. Product Feature
3. Product SKU
4. Product Description
5. Product Price Range
6. On any other field specific to your project.

You can do something like below

1. Create a page which accept the input from customer in appropriate control
2. Collect all that input and pass it to the database(I assume SQL)
3. Create a stored procedure(SP) in the SQL which accept all the above collected input and pass it to the SP
4. In SP, you can SELECT the necessary fields from the table(s) and in the WHERE condition apply the filtering based on the passed parameter collected from the customer
5. Below is the example with one parameter.

SELECT ProductId, ProductName, ProductDescription, ProductSKU, ProductPrice FROM Product WHERE ProductName LIKE '%@ProductName%'


Here @ProductName is the search term collected from the customer.

Hope it helps.
Regards

GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
Shama Shahzadi31-May-11 3:04
Shama Shahzadi31-May-11 3:04 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
That's Aragon31-May-11 18:56
That's Aragon31-May-11 18:56 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
Pete O'Hanlon1-Jun-11 0:46
mvePete O'Hanlon1-Jun-11 0:46 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
Shama Shahzadi1-Jun-11 4:55
Shama Shahzadi1-Jun-11 4:55 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
Not Active1-Jun-11 5:08
mentorNot Active1-Jun-11 5:08 
GeneralRe: How can i implement live Search in asp.net project using C# ? Pin
Shama Shahzadi2-Jun-11 2:42
Shama Shahzadi2-Jun-11 2:42 
QuestionI want to know how I can Share articles to social network like facebook , twitter ? Pin
Honeyboy_2030-May-11 2:43
Honeyboy_2030-May-11 2:43 
AnswerRe: I want to know how I can Share articles to social network like facebook , twitter ? Pin
That's Aragon30-May-11 3:59
That's Aragon30-May-11 3:59 
AnswerRe: I want to know how I can Share articles to social network like facebook , twitter ? Pin
Prasanta_Prince30-May-11 21:46
Prasanta_Prince30-May-11 21:46 
AnswerRe: I want to know how I can Share articles to social network like facebook , twitter ? Pin
AspDotNetDev31-May-11 9:16
protectorAspDotNetDev31-May-11 9:16 
AnswerRe: I want to know how I can Share articles to social network like facebook , twitter ? Pin
Dalek Dave1-Jun-11 22:26
professionalDalek Dave1-Jun-11 22:26 
QuestionResponse brings back an Incorrect URL Pin
Vimalsoft(Pty) Ltd29-May-11 23:03
professionalVimalsoft(Pty) Ltd29-May-11 23:03 
QuestionGMAP search Pin
Farraj29-May-11 4:52
Farraj29-May-11 4:52 
AnswerRe: GMAP search Pin
AspDotNetDev29-May-11 9:47
protectorAspDotNetDev29-May-11 9:47 
GeneralRe: GMAP search Pin
Farraj31-May-11 0:38
Farraj31-May-11 0:38 
GeneralRe: GMAP search Pin
AspDotNetDev1-Jun-11 20:16
protectorAspDotNetDev1-Jun-11 20:16 
Questionbanner management for ASP.NET Pin
Jassim Rahma29-May-11 2:42
Jassim Rahma29-May-11 2:42 

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.