Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Data Access and ObjectDataSource Control | Forum profile

Forum profile page for Data Access and ObjectDataSource Control on http://www.asp.net. This report page is the aggregated overview from a single forum: Data Access and ObjectDataSource Control, located on the Message Board at http://www.asp.net. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Data Access and ObjectDataSource Control" on the Message Board at http://www.asp.net is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: Forums - ASP.NET Forums - Data Access and ObjectDataSource Control (site profile, domain info asp.net)
Title: Data Access and ObjectDataSource Control
Url: http://forums.asp.net/23.aspx
Users activity: 21 posts per thread
Forum activity: 202 active threads during last week
 

Posting activity on Data Access and ObjectDataSource Control:

  Week Month 3 Months
Threads: 202 439 1,193
Post: 411 885 2,518
 

Data Access and ObjectDataSource Control Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Wencui Qian - MSFT
36
user's latest post:
selecting event of...
Published (2009-11-26 03:45:08)
Hi nileshbs, That seems strange. Could you please show us more details so that we can help you better? Thanks. 
PeteNet
24
user's latest post:
Using a stored procedure in linq...
Published (2009-11-26 01:04:31)
dhermsen: foreach(GroupResultsResult item in myresults) { what goes here?   } within the loop you'll get all the fields of the local GroupResultsResult object "item" so, do a item. and intellisense will give you list IF you have a field named ID you'd get item.ID It is basically a list of multiple GroupResultsResult objects
mamtagupta
17
user's latest post:
is there any size limit...
Published (2009-11-26 03:26:37)
ya i also think there is some limitation. Beause every datacolumn have a datatype. and every datatype have limitation. Hi i have an idea. try xml type datacolumn. It may helpful. I don't have any idea. But it may helpful. 
qwe123kids
11
user's latest post:
Filtering the Dataviewstate
Published (2009-11-26 05:14:05)
Hi, If Ur Code is Numberic  then Try "Code = 01"
rtpHarry
9
user's latest post:
Database connection failed by...
Published (2009-11-23 19:12:57)
Oh well I am just glad you solved it, these kinds of errors can be horrible to solve and you are basically on your own because its different every time!
tamliaw
7
user's latest post:
Database connection failed by...
Published (2009-11-20 19:22:00)
Finally the connection problem is resolved.  The default port 1433 was using a “globally defined” dynamic port. After changed it to a specific port pointing to my server.  It works fine.
persistentDeveloper
6
user's latest post:
Pass ListBox selected values to...
Published (2009-11-17 15:24:07)
http://forums.asp.net/t/1475397.aspx The solution suggesed here works!!  yrb.yogi's response on the thread.
imperialx
6
user's latest post:
Paging on few Data using LINQ
Published (2009-11-22 07:03:18)
PeteNet: change that to: Return pageData.Skip((page - 1 ) * pageSize ) .Take(pageSize) You just save my life Pete! Thanks!
bryanfok
6
user's latest post:
Capture data object's...
Published (2009-11-24 01:53:21)
thanks for reminding me.After checked I hook up with the wrong datasource (I have four in my page) Now it works!!
Danish Ali
6
user's latest post:
datatable validation
Published (2009-11-22 18:08:00)
Ok. Then i will say, using linq to query excel sheet. Please view the following link for more details. http://blogs.msdn.com/ericwhite/archive/2008/11/14/using-linq-to-query-excel-tables.aspx Hope it will help.
 

Latest active threads on Data Access and ObjectDataSource Control::

Forums - ASP.NET Forums
Started 3 days, 13 hours ago (2009-11-25 08:58:00)  by joewashington
Why dont you do the following: public static List<GroupResultsResul> GroupResults(Guid UserId) { dsDataContext db = new dsDataContext(); List<GroupResultsResult> myresults = db.GroupResults(UserId).ToList(); return myresults; } then u can iterate through the list like so foreach(GroupResultsResult item in myresults) { }
Thread:  Show this thread (7 posts)   Thread info: Using a stored procedure in linq in a Data Access Layer Size: 1,207 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Using a stored procedure in linq in a Data Access Layer :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 2 days, 10 hours ago (2009-11-26 11:26:01)  by mudassarkhan
check this http://aspsnippets.com/post/2009/02/04/Read-Excel- using-ADONet.aspx
Thread:  Show this thread (2 posts)   Thread info: Unformated Excel sheet upload using asp.net ( windows application... Size: 273 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Unformated Excel sheet upload using asp.net ( windows application) :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 3 days, 4 hours ago (2009-11-25 17:24:00)  by whatispunk
I'm not sure I'd recommend it. I don't know why you would want to. I've never heard of anyone wanting to. If you want to do it for security reasons, there are better ways. http://msdn.microsoft.com/en-us/library/89211k9b(V S.80).aspx
Thread:  Show this thread (5 posts)   Thread info: Connection string in HKEY_USERS in registry Size: 436 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Connection string in HKEY_USERS in registry :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 2 days, 17 hours ago (2009-11-26 05:14:05)  by qwe123kids
Hi, If Ur Code is Numberic then Try "Code = 01"
Thread:  Show this thread (2 posts)   Thread info: Filtering the Dataviewstate Size: 184 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Filtering the Dataviewstate :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 1 month, 1 week ago (2009-10-19 07:58:57)  by deostroll
Hi, instead of writing all that code inside an sql datasource event sink (siteDS_Updating), you can write that code on a button click, for eg., something like this: siteDS.UpdateParameters(0).Value = HttpContext.Current.User.Identity.Name; siteDS.Up date();
Thread:  Show this thread (11 posts)   Thread info: setting a sql parameter - c# Size: 426 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: setting a sql parameter - c# :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 3 days ago (2009-11-25 21:56:06)  by kyi
Hi, Try this below. DataTable dt = new DataTable(); dt.Columns.Add("EmployerDesc", typeof(string)); //loop through your dataset to assign into datatable foreach (DataRow dr in dsEmployee.Tables[0].Rows) { dt.Rows.Add(dr["EmployerDesc"].ToString()); }
Thread:  Show this thread (3 posts)   Thread info: Need help on manipulate DataSet Size: 1,038 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Need help on manipulate DataSet :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
 

Hot threads for last week on Data Access and ObjectDataSource Control::

Data Access and ObjectDataSource Control
Re: very urjent - 11 new posts
Started 4 days, 14 hours ago (2009-11-24 07:50:00)  by alkesh kashyap
Will You plz give the code where u are using the session variable here no session variable so plz give some idea how u are using the session variable with this function
Thread:  Show this thread (11 posts)   Thread info: very urjent Size: 311 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: very urjent :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 3 days, 16 hours ago (2009-11-25 05:38:00)  by mamtagupta
There is no limit on the datset size. But we get performance issues with the huge dataset. It will depend on the amount of memory that is available to the application.
Thread:  Show this thread (10 posts)   Thread info: is there any size limit ds.Tables[0].Rows[0][0].ToString(); Size: 291 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: is there any size limit ds.Tables[0].Rows[0][0].ToString(); :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 4 days, 19 hours ago (2009-11-24 02:57:00)  by qwe123kids
Hi, if want Pass paramter using Asp.net then chk the below ,mention link http://www.c-sharpcorner.com/UploadFile/gtomar/sto redprocedure12052007003126AM/storedprocedure.aspx http://aspalliance.com/673_CodeSnip_Calling_a_Stor ed_Procedure_from_ASPNET_20 http://www.wwwcoder.com/Default.aspx?tabid=68&site =5014&parentid=255&type=art
Thread:  Show this thread (8 posts)   Thread info: Passing parameters to stored procedure Size: 500 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Passing parameters to stored procedure :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 1 week ago (2009-11-21 06:09:00)  by karthicks
hi, check your database columns i.e (gameName, gamePlatform) are set to varbinary or not , if it's varbinary then while adding parameter also you need to set SqlDbType.VarBinary instead of SqlDbType.VarChar
Thread:  Show this thread (7 posts)   Thread info: How to add values to DB Size: 373 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to add values to DB :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 1 week, 1 day ago (2009-11-20 04:02:00)  by Deeno20
Can u post ur store procedure
Thread:  Show this thread (7 posts)   Thread info: How to call stored procedures?? Size: 131 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to call stored procedures?? :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 4 days, 17 hours ago (2009-11-24 04:59:42)  by qwe123kids
Hi, Ther may Be problem with path Server.MapPath("../ExcelImport.xls") OR string MyPath = System.IO.Path.GetDirectoryName(Filename); string ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +MyPath + ";Extended Properties='text;HDR=Yes;FMT=Delimited'"; string CmdText = "select * from " + System.IO.Path.GetFileName(Filename); OleDbConnection Con = new ...
Thread:  Show this thread (7 posts)   Thread info: Reading Excel Spreadsheet Size: 1,261 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Reading Excel Spreadsheet :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 5 days, 17 hours ago (2009-11-23 05:03:00)  by reza141414
do this.... if (!IsPostBack) { //any thing else u want } else { DetailsView1.DataSourceID = "ODS2"; DetailsView1.DataBind(); }
Thread:  Show this thread (7 posts)   Thread info: Why does ObjectDataSource.DataBind() return rows, while ObjectDataSource... Size: 391 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Why does ObjectDataSource.DataBind() return rows, while
ObjectDataSource.Select() doesn’t? :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 4 days, 23 hours ago (2009-11-23 22:48:40)  by SGWellens
Try this: protected void DSAccountOverView_Inserted(object sender, ObjectDataSourceStatusEventArgs e) { if (e.Exception != null) { lblWarning.Text = e.Exception.Message; e.ExceptionHandled = true; } }
Thread:  Show this thread (7 posts)   Thread info: Want to catch Exception in object data source Size: 427 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Want to catch Exception in object data source :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 4 days, 19 hours ago (2009-11-24 02:51:00)  by qwe123kids
Hi, http://wiki.asp.net/page.aspx/978/sqlbulkcopy-with -cnet/ chk the sample above... Before Wrting To server just CHK At the trequired fileds are in Datable.. OR Post the code
Thread:  Show this thread (7 posts)   Thread info: sqlbulkcopy error Size: 332 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: sqlbulkcopy error :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"
Data Access and ObjectDataSource Control
Started 3 days, 13 hours ago (2009-11-25 08:58:00)  by joewashington
Why dont you do the following: public static List<GroupResultsResul> GroupResults(Guid UserId) { dsDataContext db = new dsDataContext(); List<GroupResultsResult> myresults = db.GroupResults(UserId).ToList(); return myresults; } then u can iterate through the list like so foreach(GroupResultsResult item in myresults) { }
Thread:  Show this thread (7 posts)   Thread info: Using a stored procedure in linq in a Data Access Layer Size: 1,207 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Using a stored procedure in linq in a Data Access Layer :: Data Access and ObjectDataSource Control :: Forums - ASP.NET Forums"

This page was found by:   isingleresult to dataset  convert isingleresult to dataset  ObjectDataSource Excel