Click here to Skip to main content
15,917,454 members

Comments by SyberBrain (Top 8 by date)

SyberBrain 28-Jun-15 6:16am View    
no driver is needed to this model.coz im using Windows 8.1
SyberBrain 28-Jun-15 6:07am View    
tried it.
when im connect my HDD to my Desktop PC it worked fine without any freezing im very confuse about this matter :/
SyberBrain 28-Jun-15 5:40am View    
Deleted
Yeah this is not a coding question that is why i tag this question under Hardware & Networking. yeah i tried but no any positive reply from them. Thank You For You'r Time :)
SyberBrain 28-Jun-15 5:27am View    
Yep, no any freezing
SyberBrain 19-Mar-15 2:09am View    
Thank you :)

but still i have a same problem :(
then i use this code but still have same problem

HtmlForm form = new HtmlForm();
Response.Clear();
Response.Buffer = true;
Response.Charset = "";
Response.AddHeader("content-disposition", string.Format("attachment;filename={0}", "Student.xls"));
Response.ContentType = "application/ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
dgvCreditSettle.AllowPaging = false;
dgvCreditSettle.DataSource = Session["Grid"]; // For data binding to gridview
dgvCreditSettle.DataBind();
//BindGridDetails(dgvCreditSettle);
form.Attributes["runat"] = "server";
form.Controls.Add(dgvCreditSettle);
this.Controls.Add(form);
form.RenderControl(hw);
string style = @"<!--mce:2-->";
Response.Write(style);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();