我如何将此代码更改为桌面应用程序

我如何将此代码更改为桌面应用程序

本文介绍了我如何将此代码更改为桌面应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Protected Sub download(ByVal dt As DataTable)
  Dim bytes() As Byte = CType(dt.Rows(0)("Data"), Byte())
  Response.Buffer = True
  Response.Charset = ""
  Response.Cache.SetCacheability(HttpCacheability.NoCache)
  Response.ContentType = dt.Rows(0)("ContentType").ToString()
  Response.AddHeader("content-disposition", "attachment;filename="
  & dt.Rows(0)("Name").ToString())
  Response.BinaryWrite(bytes)
  Response.Flush()
  Response.End()
End Sub

推荐答案


这篇关于我如何将此代码更改为桌面应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 20:46