Click here to Skip to main content
15,883,853 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to read Texbox value in a grid Pin
Mark J. Miller31-Mar-08 6:13
Mark J. Miller31-Mar-08 6:13 
QuestionGridview with nested repeater width problem Pin
allenpotter28-Mar-08 6:18
allenpotter28-Mar-08 6:18 
GeneralExtending login webcontrol Pin
Rey999928-Mar-08 6:04
Rey999928-Mar-08 6:04 
GeneralRe: Extending login webcontrol Pin
Not Active28-Mar-08 7:07
mentorNot Active28-Mar-08 7:07 
GeneralRe: Extending login webcontrol Pin
Rey999930-Mar-08 0:32
Rey999930-Mar-08 0:32 
GeneralRe: Extending login webcontrol Pin
Rey999930-Mar-08 21:20
Rey999930-Mar-08 21:20 
Generalsimple project Pin
laziale28-Mar-08 5:27
laziale28-Mar-08 5:27 
GeneralRe: simple project Pin
eyeseetee28-Mar-08 5:41
eyeseetee28-Mar-08 5:41 
have you created any code yet, can we see it?

this is an example using stored procedure:

SqlCommand cmd_insertintotable = new SqlCommand("insertintotable", con4);
cmd_insertintotable.CommandType = CommandType.StoredProcedure;
cmd_insertintotable.ExecuteNonQuery();

cmd_insertintotable.Parameters.Add(new SqlParameter("@textboxvalue", SqlDbType.VarChar));
cmd_insertintotable.Parameters["@textboxvaluecode"].Value = textboxvalue.text;


here is the actual stored procedure which you should have in sql server:


CREATE Procedure insertintotable
(
@field varchar (30),
)
AS

INSERT INTO table
(field )
VALUES
(@textboxvalue)

this should get you going, remember you need an sql connection as well but you can do some work! Smile | :)
GeneralRe: simple project Pin
J4amieC28-Mar-08 6:30
J4amieC28-Mar-08 6:30 
GeneralWebResource.axd gives SSL error warning - how do I turn it off? [modified] Pin
ERG Web Dev28-Mar-08 5:20
ERG Web Dev28-Mar-08 5:20 
QuestionMedium Trust webserver won't let me use a Forms Authentication Provider [modified] Pin
bambi_nl28-Mar-08 5:15
bambi_nl28-Mar-08 5:15 
GeneralASP.Net, Multithreading, and Response object Pin
Vodstok28-Mar-08 5:15
Vodstok28-Mar-08 5:15 
GeneralRe: ASP.Net, Multithreading, and Response object [modified] Pin
nelo_28-Mar-08 5:51
nelo_28-Mar-08 5:51 
GeneralCall webservice method with messgedigest Pin
mpavas28-Mar-08 5:05
mpavas28-Mar-08 5:05 
Generalasp.net is not redirecting a page to proper login.aspx page for authentication. Pin
coolsatty28-Mar-08 5:01
coolsatty28-Mar-08 5:01 
GeneralRe: asp.net is not redirecting a page to proper login.aspx page for authentication. Pin
eyeseetee28-Mar-08 5:09
eyeseetee28-Mar-08 5:09 
GeneralRe: asp.net is not redirecting a page to proper login.aspx page for authentication. Pin
coolsatty29-Mar-08 5:15
coolsatty29-Mar-08 5:15 
GeneralRe: asp.net is not redirecting a page to proper login.aspx page for authentication. Pin
Jesse Squire28-Mar-08 5:11
Jesse Squire28-Mar-08 5:11 
GeneralRe: asp.net is not redirecting a page to proper login.aspx page for authentication. Pin
farazsk1129-Mar-08 2:31
farazsk1129-Mar-08 2:31 
GeneralRe: asp.net is not redirecting a page to proper login.aspx page for authentication. Pin
coolsatty29-Mar-08 4:50
coolsatty29-Mar-08 4:50 
GeneralRe: asp.net is not redirecting a page to proper login.aspx page for authentication. Pin
farazsk1129-Mar-08 7:34
farazsk1129-Mar-08 7:34 
GeneralFileUpload Problem Pin
zeeShan anSari28-Mar-08 4:51
zeeShan anSari28-Mar-08 4:51 
GeneralRe: FileUpload Problem Pin
eyeseetee28-Mar-08 4:52
eyeseetee28-Mar-08 4:52 
GeneralRe: FileUpload Problem Pin
Jesse Squire28-Mar-08 5:00
Jesse Squire28-Mar-08 5:00 
GeneralRe: FileUpload Problem Pin
zeeShan anSari28-Mar-08 5:12
zeeShan anSari28-Mar-08 5:12 

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.