Click here to Skip to main content
15,889,034 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionAspx Page Load Pin
Narendra L17-Sep-14 1:48
Narendra L17-Sep-14 1:48 
AnswerRe: Aspx Page Load Pin
Kornfeld Eliyahu Peter17-Sep-14 2:00
professionalKornfeld Eliyahu Peter17-Sep-14 2:00 
AnswerRe: Aspx Page Load Pin
Sibeesh KV29-Sep-14 1:13
professionalSibeesh KV29-Sep-14 1:13 
QuestionHow to learn Asp.net MVC? Pin
RajeeshMenoth16-Sep-14 23:32
professionalRajeeshMenoth16-Sep-14 23:32 
AnswerRe: How to learn Asp.net MVC? Pin
Swinkaran17-Sep-14 18:20
professionalSwinkaran17-Sep-14 18:20 
GeneralRe: How to learn Asp.net MVC? Pin
RajeeshMenoth17-Sep-14 21:51
professionalRajeeshMenoth17-Sep-14 21:51 
AnswerRe: How to learn Asp.net MVC? Pin
Sibeesh KV29-Sep-14 1:15
professionalSibeesh KV29-Sep-14 1:15 
QuestionASP - Display a GridView on Second Page Pin
Member 1090638616-Sep-14 5:16
Member 1090638616-Sep-14 5:16 
Hi folks, can someone please help, I have been going round in circles with this and I’m new to ASP & C#.

Could someone please create a basic example of how to display a web user controls i.e. dropdown lists on one page and the results displaced on a second page within a Gridview.

I have store proc for the GridView, big thanks as I am losing the plot here!!!

SQL
USE [TyreSannerSQL]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[SearchResults] @Width int, @Profile int, @Diamete int, @Speed nvarchar, @CustPostcode nvarchar (50)

As
Begin

SELECT     Suppliers.SupplierID, Suppliers.SupplierName, Product.Width, Product.Profile, Product.Diamete, Product.Speed, Product.Brand, Product.TyreModel, Product.TyreType, 
                      Product.RollingResistance, Product.WetGrip, Product.NoiseEmission, Product.ProductUnitSalePrice

FROM         Product INNER JOIN
                      Suppliers ON Product.SupplierFK = Suppliers.SupplierID
                      
               WHERE  Width = @Width 
				and Product.Profile = @Profile 
				and Product.Diamete = @Diamete 
				and (Product.Speed = @Speed 
				or COALESCE(@Speed,'') = '') 
				and Suppliers.SupplierDistrict = LEFT(@CustPostcode,2)     
				ORDER BY Product.ProductUnitSalePrice ASC
                      
                      
                      
                      
 End

AnswerRe: ASP - Display a GridView on Second Page Pin
ZurdoDev16-Sep-14 10:29
professionalZurdoDev16-Sep-14 10:29 
QuestionDetermining all possible AD login return types (i.e. User Not Found, etc.) from a MVC json web service Pin
Stephen Holdorf15-Sep-14 13:36
Stephen Holdorf15-Sep-14 13:36 
Questionweb.config Pin
Member 1108003313-Sep-14 5:40
Member 1108003313-Sep-14 5:40 
AnswerRe: web.config Pin
jkirkerx15-Sep-14 7:09
professionaljkirkerx15-Sep-14 7:09 
AnswerRe: web.config Pin
Sibeesh KV29-Sep-14 1:18
professionalSibeesh KV29-Sep-14 1:18 
Questionasp.net membership Pin
msc92013-Sep-14 3:48
msc92013-Sep-14 3:48 
AnswerRe: asp.net membership Pin
hypermellow18-Sep-14 5:32
professionalhypermellow18-Sep-14 5:32 
GeneralRe: asp.net membership Pin
msc92022-Sep-14 0:55
msc92022-Sep-14 0:55 
QuestionJquery-ui ASP Update Panels and User Controls Pin
Wierdbeard6512-Sep-14 7:08
Wierdbeard6512-Sep-14 7:08 
AnswerJquery DatePicker Pin
jkirkerx15-Sep-14 9:37
professionaljkirkerx15-Sep-14 9:37 
GeneralRe: Jquery DatePicker Pin
Wierdbeard6520-Sep-14 12:18
Wierdbeard6520-Sep-14 12:18 
GeneralRe: Jquery DatePicker Pin
jkirkerx20-Sep-14 12:40
professionaljkirkerx20-Sep-14 12:40 
QuestionError: The resource cannot be found. Pin
Member 876166711-Sep-14 8:42
Member 876166711-Sep-14 8:42 
AnswerRe: Error: The resource cannot be found. Pin
ZurdoDev11-Sep-14 8:45
professionalZurdoDev11-Sep-14 8:45 
GeneralRe: Error: The resource cannot be found. Pin
Member 876166711-Sep-14 9:03
Member 876166711-Sep-14 9:03 
AnswerRe: Error: The resource cannot be found. Pin
ZurdoDev11-Sep-14 9:06
professionalZurdoDev11-Sep-14 9:06 
GeneralRe: Error: The resource cannot be found. Pin
Member 876166711-Sep-14 9:15
Member 876166711-Sep-14 9: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.