Click here to Skip to main content
15,910,121 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionInvoke EXE from web. Pin
justindhas10-Nov-06 17:04
justindhas10-Nov-06 17:04 
AnswerRe: Invoke EXE from web. Pin
Vasudevan Deepak Kumar10-Nov-06 21:13
Vasudevan Deepak Kumar10-Nov-06 21:13 
QuestionHow to regenerate web.config + Seeking tips and info on web.config! Pin
bluesourcecode10-Nov-06 11:14
bluesourcecode10-Nov-06 11:14 
AnswerRe: How to regenerate web.config + Seeking tips and info on web.config! Pin
aamironline10-Nov-06 16:28
aamironline10-Nov-06 16:28 
Questioncontrols with table Pin
Mohammed Elkholy10-Nov-06 10:25
Mohammed Elkholy10-Nov-06 10:25 
AnswerRe: controls with table Pin
Vasudevan Deepak Kumar10-Nov-06 21:14
Vasudevan Deepak Kumar10-Nov-06 21:14 
QuestionDatasets in ASP.Net Pin
theflux12310-Nov-06 10:06
theflux12310-Nov-06 10:06 
AnswerRe: Datasets in ASP.Net Pin
indianet10-Nov-06 11:22
indianet10-Nov-06 11:22 
Update the post back changes for each rows from the textboxes to your dataset
and then use the following code to update the changes to database

OleDbDataAdapter dataAdapter=New OleDbDataAdapter();
OleDbCommandBuilder builder;
dataAdapter = new OleDbDataAdapter("SELECT * FROM" + tableName;, conn);
builder = new OleDbCommandBuilder(dataAdapter);
dataAdapter.UpdateCommand = builder.GetUpdateCommand();
dataadapter.Update(updatedDataSet);
dataAdapter.Dispose();

Questionhow to make my site reads arabic Pin
karimkamal10-Nov-06 9:45
karimkamal10-Nov-06 9:45 
AnswerRe: how to make my site reads arabic Pin
Vasudevan Deepak Kumar10-Nov-06 21:15
Vasudevan Deepak Kumar10-Nov-06 21:15 
QuestionAccessing Parent Page Property from User Control Pin
GregStevensCA10-Nov-06 9:26
GregStevensCA10-Nov-06 9:26 
AnswerRe: Accessing Parent Page Property from User Control Pin
Guffa10-Nov-06 10:19
Guffa10-Nov-06 10:19 
GeneralRe: Accessing Parent Page Property from User Control Pin
GregStevensCA10-Nov-06 11:20
GregStevensCA10-Nov-06 11:20 
GeneralRe: Accessing Parent Page Property from User Control Pin
indianet10-Nov-06 12:40
indianet10-Nov-06 12:40 
GeneralRe: Accessing Parent Page Property from User Control Pin
Guffa10-Nov-06 12:59
Guffa10-Nov-06 12:59 
QuestionWeird character insertion Pin
Marc Paliotti10-Nov-06 8:35
Marc Paliotti10-Nov-06 8:35 
AnswerRe: Weird character insertion Pin
Marc Paliotti10-Nov-06 9:15
Marc Paliotti10-Nov-06 9:15 
QuestionExtract content from Word Documents Pin
GaryWoodfine 10-Nov-06 8:22
professionalGaryWoodfine 10-Nov-06 8:22 
AnswerRe: Extract content from Word Documents Pin
indianet10-Nov-06 9:13
indianet10-Nov-06 9:13 
GeneralRe: Extract content from Word Documents Pin
GaryWoodfine 10-Nov-06 22:53
professionalGaryWoodfine 10-Nov-06 22:53 
QuestionEnvironment Independent Connection Strings Pin
robert11010-Nov-06 8:09
robert11010-Nov-06 8:09 
AnswerRe: Environment Independent Connection Strings Pin
ednrgc10-Nov-06 8:46
ednrgc10-Nov-06 8:46 
GeneralRe: Environment Independent Connection Strings Pin
robert11010-Nov-06 8:58
robert11010-Nov-06 8:58 
GeneralRe: Environment Independent Connection Strings Pin
ednrgc10-Nov-06 8:59
ednrgc10-Nov-06 8:59 
QuestionConfused with Output cache set programmatically Pin
SharpSmith10-Nov-06 6:51
SharpSmith10-Nov-06 6:51 

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.