Click here to Skip to main content
15,881,248 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionC# vs Javascript Question Pin
Roger Wright29-Jan-09 19:44
professionalRoger Wright29-Jan-09 19:44 
AnswerRe: C# vs Javascript Question Pin
Christian Graus29-Jan-09 20:07
protectorChristian Graus29-Jan-09 20:07 
GeneralRe: C# vs Javascript Question Pin
Roger Wright29-Jan-09 20:23
professionalRoger Wright29-Jan-09 20:23 
GeneralRe: C# vs Javascript Question Pin
N a v a n e e t h29-Jan-09 21:19
N a v a n e e t h29-Jan-09 21:19 
GeneralRe: C# vs Javascript Question Pin
Roger Wright30-Jan-09 2:10
professionalRoger Wright30-Jan-09 2:10 
GeneralRe: C# vs Javascript Question Pin
Christian Graus29-Jan-09 22:38
protectorChristian Graus29-Jan-09 22:38 
GeneralRe: C# vs Javascript Question Pin
Roger Wright30-Jan-09 2:04
professionalRoger Wright30-Jan-09 2:04 
Questiondataset to formview Pin
Arif Liminto29-Jan-09 19:27
professionalArif Liminto29-Jan-09 19:27 
Hi, I am still a newbie in ASP.net, sorry if I am asking stupid message.

I am trying to develop some website using asp.net 2.0
and I currently have some difficulity to use one of the ToolBox called FormView
for displaying the data from database

I want to transfer from microsoft access to FormView here is the code

OleDbConnection myConnection = new OleDbConnection(myConnectionString);
myConnection.Open();

OleDbCommand myCommand = new OleDbCommand();
myCommand.Conn = myConnection;
myCommand.CommandText = "SELECT * FROM [USER] WHERE UserName = @UserName";
myCommand.Parameters.AddWithValue("@UserName",sUserName);

OleDbDataAdapter myAdapter = new OleDbDataAdapter(myCommand);

myDataAdapter.Fill(myDataSet);

FORM_View_Users.DataSource = myDataSet;
FORM_View_Users.DataBind();

myConnection.Close();


I think I did with the correct way because when I tried to run the website, I did not get any exception error, However, I couldn't see the formview, it just blank . Is there any attribute that I need to fill in so I can see the data in the Form_View ?

thanks
AnswerRe: dataset to formview Pin
Christian Graus29-Jan-09 20:10
protectorChristian Graus29-Jan-09 20:10 
GeneralRe: dataset to formview Pin
Arif Liminto29-Jan-09 20:37
professionalArif Liminto29-Jan-09 20:37 
QuestionQuickBooks integration Pin
joindotnet29-Jan-09 19:24
joindotnet29-Jan-09 19:24 
AnswerRe: QuickBooks integration Pin
N a v a n e e t h29-Jan-09 19:31
N a v a n e e t h29-Jan-09 19:31 
AnswerRe: QuickBooks integration Pin
pranavaa14-Dec-09 2:16
pranavaa14-Dec-09 2:16 
Question[Message Deleted] Pin
raushan_929-Jan-09 19:20
raushan_929-Jan-09 19:20 
AnswerRe: Validation on Two Dates Pin
N a v a n e e t h29-Jan-09 19:23
N a v a n e e t h29-Jan-09 19:23 
General[Message Deleted] Pin
raushan_929-Jan-09 19:34
raushan_929-Jan-09 19:34 
GeneralRe: Validation on Two Dates Pin
kishorg129-Jan-09 20:01
kishorg129-Jan-09 20:01 
Questiondropdown Pin
gvpr29-Jan-09 19:19
gvpr29-Jan-09 19:19 
AnswerRe: dropdown Pin
N a v a n e e t h29-Jan-09 19:21
N a v a n e e t h29-Jan-09 19:21 
GeneralRe: dropdown Pin
gvpr29-Jan-09 19:26
gvpr29-Jan-09 19:26 
GeneralRe: dropdown Pin
N a v a n e e t h29-Jan-09 19:30
N a v a n e e t h29-Jan-09 19:30 
GeneralRe: dropdown Pin
Christian Graus29-Jan-09 20:14
protectorChristian Graus29-Jan-09 20:14 
GeneralRe: dropdown Pin
Ashutosh Phoujdar29-Jan-09 22:09
Ashutosh Phoujdar29-Jan-09 22:09 
QuestionRegistry access Pin
siva45529-Jan-09 19:02
siva45529-Jan-09 19:02 
AnswerRe: Registry access Pin
N a v a n e e t h29-Jan-09 19:20
N a v a n e e t h29-Jan-09 19:20 

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.