Click here to Skip to main content
15,902,835 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: web.config in subfolder Pin
Diablo_m6-Jun-07 2:55
Diablo_m6-Jun-07 2:55 
GeneralRe: web.config in subfolder Pin
ganti.r6-Jun-07 6:19
ganti.r6-Jun-07 6:19 
GeneralRe: web.config in subfolder Pin
Diablo_m7-Jun-07 1:27
Diablo_m7-Jun-07 1:27 
GeneralRe: web.config in subfolder Pin
ganti.r7-Jun-07 2:00
ganti.r7-Jun-07 2:00 
Questionschedule timer Pin
dhatchu6-Jun-07 0:12
dhatchu6-Jun-07 0:12 
AnswerRe: schedule timer Pin
Christian Graus6-Jun-07 0:50
protectorChristian Graus6-Jun-07 0:50 
Questiongridview is used to store data Pin
kvijayajyothy6-Jun-07 0:10
kvijayajyothy6-Jun-07 0:10 
AnswerRe: gridview is used to store data Pin
ganti.r6-Jun-07 2:10
ganti.r6-Jun-07 2:10 
Use a dataset, bind it to grid. Once you are click the save button, use the data in dataset to save in the database.


//Binding datagrid with dataset
{
Dataset dsData = New DataSet()
//Load columns/relevant data into dataset
LoadData(dsData);
dataGrid.DataSource = dsData;
dataGrid.BindData();
}

//Saving to database on savebutton event.
{
SaveData(dsData)
}




i Think, i Wait, i Fast
rAm

Questionlink Pin
saravanan056-Jun-07 0:06
saravanan056-Jun-07 0:06 
AnswerRe: link Pin
Christian Graus6-Jun-07 0:54
protectorChristian Graus6-Jun-07 0:54 
QuestionBind() using SelectedValue Pin
John Gathogo5-Jun-07 23:43
John Gathogo5-Jun-07 23:43 
Questiondetailsview as item template in datalist,asp.net2.0+c# Pin
regin5-Jun-07 23:39
regin5-Jun-07 23:39 
QuestionRadioButton in treeview Pin
morteza575-Jun-07 23:25
morteza575-Jun-07 23:25 
QuestionHow to convert an Excel Spreadsheet to a Microsoft Access database? Pin
Nada Adel5-Jun-07 23:19
Nada Adel5-Jun-07 23:19 
AnswerRe: How to convert an Excel Spreadsheet to a Microsoft Access database? Pin
Venkatesh Mookkan5-Jun-07 23:42
Venkatesh Mookkan5-Jun-07 23:42 
GeneralRe: How to convert an Excel Spreadsheet to a Microsoft Access database? Pin
Nada Adel6-Jun-07 1:27
Nada Adel6-Jun-07 1:27 
GeneralRe: How to convert an Excel Spreadsheet to a Microsoft Access database? Pin
Nada Adel6-Jun-07 1:28
Nada Adel6-Jun-07 1:28 
QuestionMobile web page viewing Pin
marky7775-Jun-07 23:05
marky7775-Jun-07 23:05 
QuestionFolder Quota Maintanence using ASP.net Pin
_kane_5-Jun-07 22:45
_kane_5-Jun-07 22:45 
Questionhow to get result upto 2 decimal? Pin
monuSaini5-Jun-07 21:59
monuSaini5-Jun-07 21:59 
AnswerRe: how to get result upto 2 decimal? Pin
Steven J Jowett5-Jun-07 22:58
Steven J Jowett5-Jun-07 22:58 
GeneralRe: how to get result upto 2 decimal? Pin
monuSaini5-Jun-07 23:02
monuSaini5-Jun-07 23:02 
GeneralRe: how to get result upto 2 decimal? Pin
badgrs5-Jun-07 23:25
badgrs5-Jun-07 23:25 
GeneralRe: how to get result upto 2 decimal? Pin
Steven J Jowett5-Jun-07 23:43
Steven J Jowett5-Jun-07 23:43 
Questionadmin role management for web parts Pin
Littlefool5-Jun-07 21:33
Littlefool5-Jun-07 21:33 

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.