Click here to Skip to main content
15,909,199 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Need help to transfer data from excel work sheet to MS Access database tables using ASP.Net Pin
Mike Ellison17-Jan-07 6:01
Mike Ellison17-Jan-07 6:01 
QuestionReportviewer sessions Prblm Pin
mahi988517-Jan-07 2:07
mahi988517-Jan-07 2:07 
Questionscanner problem Pin
jabbarsb17-Jan-07 1:32
jabbarsb17-Jan-07 1:32 
QuestionBarcode image generation Pin
VaibhavTiparadi17-Jan-07 1:14
VaibhavTiparadi17-Jan-07 1:14 
QuestionHow to get record by using ID Pin
slSoftware17-Jan-07 1:09
slSoftware17-Jan-07 1:09 
AnswerRe: How to get record by using ID Pin
Christian Graus17-Jan-07 1:14
protectorChristian Graus17-Jan-07 1:14 
GeneralRe: How to get record by using ID Pin
slSoftware17-Jan-07 1:32
slSoftware17-Jan-07 1:32 
GeneralRe: How to get record by using ID Pin
kiran kumar[Intelligroup]17-Jan-07 2:08
kiran kumar[Intelligroup]17-Jan-07 2:08 
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@<your param="" name="">", SqlDbType.NVarChar, 50);
param[0].Direction == ParameterDirection.InputOutput;
param[0].Value=<your value="">;

//Add the parameters to the command object

objcommand.Parameters.Add(param);
objcommand.CommandType=CommandType.StoreProcedure;
objcommand.Connection=<conn object="">;
objcommand.Command="Stored Proc Name";
objcommand.ExecuteNonQuery();


Kiran Kumar.CH
(MCP)

AnswerRe: How to get record by using ID Pin
Vinay Dornala17-Jan-07 2:05
Vinay Dornala17-Jan-07 2:05 
GeneralRe: How to get record by using ID Pin
J4amieC17-Jan-07 2:19
J4amieC17-Jan-07 2:19 
GeneralRe: How to get record by using ID Pin
szukuro17-Jan-07 2:59
szukuro17-Jan-07 2:59 
GeneralRe: How to get record by using ID Pin
slSoftware17-Jan-07 22:24
slSoftware17-Jan-07 22:24 
QuestionProvider error '8007000e' Pin
asprajesh17-Jan-07 1:02
asprajesh17-Jan-07 1:02 
AnswerRe: Provider error '8007000e' Pin
Christian Graus17-Jan-07 1:15
protectorChristian Graus17-Jan-07 1:15 
Questionhow to validate Dropdownlist in ASP.NET page Pin
findtango17-Jan-07 1:01
findtango17-Jan-07 1:01 
AnswerRe: how to validate Dropdownlist in ASP.NET page Pin
VaibhavTiparadi17-Jan-07 1:11
VaibhavTiparadi17-Jan-07 1:11 
Questionimage cropping not working in Mozilla Firefox Browser Pin
yogita charhate17-Jan-07 0:57
yogita charhate17-Jan-07 0:57 
AnswerRe: image cropping not working in Mozilla Firefox Browser Pin
findtango17-Jan-07 1:09
findtango17-Jan-07 1:09 
QuestionHow can i Unzip Pin
fmlove17-Jan-07 0:46
fmlove17-Jan-07 0:46 
QuestionTitle Bar Pin
Khan.Bangash17-Jan-07 0:26
Khan.Bangash17-Jan-07 0:26 
AnswerRe: Title Bar Pin
Christian Graus17-Jan-07 1:12
protectorChristian Graus17-Jan-07 1:12 
Questiondesigning and coding help Pin
projectbe17-Jan-07 0:06
projectbe17-Jan-07 0:06 
AnswerRe: designing and coding help Pin
Christian Graus17-Jan-07 1:13
protectorChristian Graus17-Jan-07 1:13 
QuestionURGENT::: Secure URL Pin
DGtech16-Jan-07 23:11
DGtech16-Jan-07 23:11 
AnswerRe: URGENT::: Secure URL Pin
varshavmane16-Jan-07 23:14
varshavmane16-Jan-07 23:14 

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.