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
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.
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
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
Started 1 week, 1 day ago (2009-11-20 04:02:00)
by Deeno20
Can u post ur store procedure
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 ...
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();
}
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;
}
}
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
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) { }