Click here to Skip to main content
15,914,163 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: error in asp.net Pin
dadax_8523-Apr-06 22:48
dadax_8523-Apr-06 22:48 
QuestionStored Procedures Pin
LAYEEQ AHMED KHAN22-Apr-06 23:44
LAYEEQ AHMED KHAN22-Apr-06 23:44 
AnswerRe: Stored Procedures Pin
CWIZO22-Apr-06 23:47
CWIZO22-Apr-06 23:47 
AnswerRe: Stored Procedures Pin
dadax_8523-Apr-06 0:23
dadax_8523-Apr-06 0:23 
GeneralRe: Stored Procedures Pin
Colin Angus Mackay23-Apr-06 3:10
Colin Angus Mackay23-Apr-06 3:10 
GeneralRe: Stored Procedures Pin
dadax_8523-Apr-06 12:32
dadax_8523-Apr-06 12:32 
AnswerRe: Stored Procedures Pin
dadax_8523-Apr-06 12:37
dadax_8523-Apr-06 12:37 
GeneralRe: Stored Procedures Pin
gyokusei23-Apr-06 15:54
gyokusei23-Apr-06 15:54 
dadax_85 wrote:
proc = "EXEC SP1 " & TextBox1.Text & ",'" & TextBox2.Text & "','" & TextBox3.Text & "'," & TextBox4.Text

very dangerous!

using these code instead:

[C#]
SqlCommand cmd = new SqlCommand("SP1", con);
cmd.CommandType = CommandType.StoredProcedure;

cmd.Parameters.Add("@ID", TextBox1.Text);
cmd.Parameters.Add("@Name", TextBox2.Text);
cmd.Parameters.Add("@Decription", TextBox3.Text);
cmd.Parameters.Add("@ProjectID", TextBox4.Text);

cmd.ExecuteNonQuery();


-- modified at 21:55 Sunday 23rd April, 2006
QuestionI can't retrive image to an image box plz help Pin
mredaghaly22-Apr-06 21:58
mredaghaly22-Apr-06 21:58 
AnswerRe: I can't retrive image to an image box plz help Pin
RichardGrimmer22-Apr-06 22:15
RichardGrimmer22-Apr-06 22:15 
GeneralRe: I can't retrive image to an image box plz help Pin
mredaghaly22-Apr-06 23:29
mredaghaly22-Apr-06 23:29 
GeneralRe: I can't retrive image to an image box plz help Pin
RichardGrimmer23-Apr-06 0:05
RichardGrimmer23-Apr-06 0:05 
GeneralRe: I can't retrive image to an image box plz help Pin
mredaghaly23-Apr-06 0:18
mredaghaly23-Apr-06 0:18 
AnswerRe: I can't retrive image to an image box plz help Pin
minhpc_bk23-Apr-06 2:38
minhpc_bk23-Apr-06 2:38 
AnswerRe: Editting Fields in DetailsView control, change field from textbox --> dropdownlist Pin
minhpc_bk23-Apr-06 2:38
minhpc_bk23-Apr-06 2:38 
Questionwebservice nightmare Pin
g00fyman22-Apr-06 17:44
g00fyman22-Apr-06 17:44 
Questionpage_load on content pages Pin
2hdass22-Apr-06 15:26
2hdass22-Apr-06 15:26 
AnswerRe: page_load on content pages Pin
CWIZO22-Apr-06 23:49
CWIZO22-Apr-06 23:49 
AnswerRe: page_load on content pages Pin
minhpc_bk23-Apr-06 2:36
minhpc_bk23-Apr-06 2:36 
GeneralRe: page_load on content pages Pin
2hdass23-Apr-06 10:15
2hdass23-Apr-06 10:15 
GeneralRe: page_load on content pages Pin
minhpc_bk23-Apr-06 15:55
minhpc_bk23-Apr-06 15:55 
Questioninclude aspx file Pin
dadax_8522-Apr-06 12:11
dadax_8522-Apr-06 12:11 
AnswerRe: include aspx file Pin
RichardGrimmer22-Apr-06 22:17
RichardGrimmer22-Apr-06 22:17 
AnswerRe: include aspx file Pin
minhpc_bk23-Apr-06 2:35
minhpc_bk23-Apr-06 2:35 
QuestionPopulate values into html form Pin
Uma Kameswari22-Apr-06 9:55
Uma Kameswari22-Apr-06 9:55 

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.