Click here to Skip to main content
15,887,135 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionrich text editor Pin
blachsmith9-Jul-13 16:00
blachsmith9-Jul-13 16:00 
QuestionDisplaying Database Pin
Athul Tuttu Baby9-Jul-13 7:33
Athul Tuttu Baby9-Jul-13 7:33 
QuestionRe: Displaying Database Pin
ZurdoDev10-Jul-13 9:01
professionalZurdoDev10-Jul-13 9:01 
QuestionJasperReport and Asp.net MVC4 Pin
kiemieuk9-Jul-13 6:09
kiemieuk9-Jul-13 6:09 
QuestionCrystal Report with Data Set running on the Windows server 2008 64bit ...? Pin
fasher_the_one9-Jul-13 5:42
fasher_the_one9-Jul-13 5:42 
QuestionData Access From SQL SERVER to Asp.net 4.0Application Pin
shuja0829-Jul-13 0:07
shuja0829-Jul-13 0:07 
QuestionData Access From SQL SERVER to Asp.net Application Pin
shuja0829-Jul-13 0:06
shuja0829-Jul-13 0:06 
AnswerRe: Data Access From SQL SERVER to Asp.net Application Pin
chester_it2111-Jul-13 8:45
chester_it2111-Jul-13 8:45 
hi Shuja,

at its base is all activities when using Parameter Stored Procedure, we must define its parameters simultaneously dengna making its Stored Procedure.
using LINQ or the Code definition ConnectionsClass (SqlClient, ODBC, OleDb etc. ..), its all the same to use parameters.
but if you want to save the program code, you can make it with a parsing technique parameters such as the example below:

in SP,
SQL
ALTER PROCEDURE [dbo]. [GET_SALER_ORDER]
(
@ SALESNAME VARCHAR (20)
)
U.S.
SELECT * FROM WHERE TABLE_SALES SALES_NAME LIKE @ SALESNAME

and in its asp.net code, you can call him by implanting code like this:
C#
salesname var = "%" + parsingsalesnamevalue + "%";

             var sqlcmd = new SqlCommand ("GET_SALER_ORDER", sqlcon);

             sqlcmd.CommandType = CommandType.StoredProcedure;
             sqlcmd.Parameters.AddWithValue ("@ SALESNAME", salesname);

This means, if the value of its parsingsalesnamevalue empty, meaning the application code to call the data without the filter, if its opposite, meaning the application code to filter based salesname.
is this what you mean,
or you can tell me more detail about your wishes,
hope this helps as a prefix you in building your applications
Questioncascade report Pin
samsamn8-Jul-13 22:12
samsamn8-Jul-13 22:12 
QuestionAny Isses with ASP.NET with IE 10? Pin
Xarzu8-Jul-13 12:14
Xarzu8-Jul-13 12:14 
AnswerRe: Any Isses with ASP.NET with IE 10? Pin
Bernhard Hiller8-Jul-13 23:23
Bernhard Hiller8-Jul-13 23:23 
AnswerRe: Any Isses with ASP.NET with IE 10? Pin
Richard Deeming9-Jul-13 1:17
mveRichard Deeming9-Jul-13 1:17 
GeneralRe: Any Isses with ASP.NET with IE 10? Pin
jkirkerx9-Jul-13 8:50
professionaljkirkerx9-Jul-13 8:50 
QuestionSetting up Asp.net Mvc3, EF and Structuremap Pin
Member 100042608-Jul-13 6:02
Member 100042608-Jul-13 6:02 
AnswerRe: Setting up Asp.net Mvc3, EF and Structuremap Pin
Jameel VM9-Jul-13 19:33
Jameel VM9-Jul-13 19:33 
GeneralRe: Setting up Asp.net Mvc3, EF and Structuremap Pin
Member 1000426010-Jul-13 0:41
Member 1000426010-Jul-13 0:41 
GeneralRe: Setting up Asp.net Mvc3, EF and Structuremap Pin
Jameel VM10-Jul-13 4:52
Jameel VM10-Jul-13 4:52 
QuestionWebException timeout Problem. Pin
vishalmudrale8-Jul-13 4:07
vishalmudrale8-Jul-13 4:07 
AnswerRe: WebException timeout Problem. Pin
onelopez8-Jul-13 4:18
onelopez8-Jul-13 4:18 
GeneralRe: WebException timeout Problem. Pin
vishalmudrale8-Jul-13 19:28
vishalmudrale8-Jul-13 19:28 
GeneralRe: WebException timeout Problem. Pin
vishalmudrale8-Jul-13 19:58
vishalmudrale8-Jul-13 19:58 
Questionfacebook wall programatically Pin
Member 99727867-Jul-13 21:31
Member 99727867-Jul-13 21:31 
AnswerRe: facebook wall programatically Pin
Blikkies7-Jul-13 22:50
professionalBlikkies7-Jul-13 22:50 
Questionadd checkbox in ever row of flexgrid Pin
samsamn6-Jul-13 23:58
samsamn6-Jul-13 23:58 
AnswerRe: add checkbox in ever row of flexgrid Pin
samsamn7-Jul-13 19:41
samsamn7-Jul-13 19:41 

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.