Click here to Skip to main content
15,887,812 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Database first Entity framework with repository pattern Pin
Matt U.30-Sep-14 5:23
Matt U.30-Sep-14 5:23 
QuestionCompare 2 tables Pin
byka17-Sep-14 1:52
byka17-Sep-14 1:52 
AnswerRe: Compare 2 tables Pin
Eddy Vluggen17-Sep-14 5:15
professionalEddy Vluggen17-Sep-14 5:15 
AnswerRe: Compare 2 tables Pin
Sibeesh KV6-Oct-14 0:43
professionalSibeesh KV6-Oct-14 0:43 
Questionmessage.show Pin
geparl15-Sep-14 7:23
geparl15-Sep-14 7:23 
AnswerRe: message.show Pin
Richard MacCutchan15-Sep-14 21:05
mveRichard MacCutchan15-Sep-14 21:05 
GeneralRe: message.show Pin
geparl17-Sep-14 4:03
geparl17-Sep-14 4:03 
QuestionOutput to memorystream Pin
byka12-Sep-14 2:35
byka12-Sep-14 2:35 
Please help me...
objCreateMasterBenefit.CreateMasterBenefitDocument return SpreadsheetDocument how can I output so users can choose to save/open doc in web apps...
Dim MemoryStream As New MemoryStream
      Try
            Response.ClearHeaders()
          Response.ClearContent()
          Response.Clear()
          Response.Buffer = True
          Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml" '"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml" '"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" '"application/vnd.ms-excel"
          Response.AddHeader("content-disposition", "attachment; filename=" & lblEditedPlan.Text)
          Response.Charset = ""
          Me.EnableViewState = False

          objCreateMasterBenefit.CreateMasterBenefitDocument("Master_Benefit_"".xlsx", MemoryStream, groupID, planID, SequenceNumber)


          MemoryStream.WriteTo(Response.OutputStream)


          Response.Flush()


      Catch ex As Exception
          Throw
      Finally
          MemoryStream.Close()
          MemoryStream.Dispose()

      End Try

      Response.End()

      Response.End()

AnswerRe: Output to memorystream Pin
jschell13-Sep-14 6:44
jschell13-Sep-14 6:44 
AnswerRe: Output to memorystream Pin
Eddy Vluggen15-Sep-14 8:34
professionalEddy Vluggen15-Sep-14 8:34 
QuestionBlog and RSS feeds Pin
Bastien Vandamme10-Sep-14 23:24
Bastien Vandamme10-Sep-14 23:24 
AnswerRe: Blog and RSS feeds Pin
Richard MacCutchan10-Sep-14 23:46
mveRichard MacCutchan10-Sep-14 23:46 
GeneralRe: Blog and RSS feeds Pin
Bastien Vandamme13-Sep-14 16:13
Bastien Vandamme13-Sep-14 16:13 
GeneralRe: Blog and RSS feeds Pin
Richard MacCutchan14-Sep-14 0:10
mveRichard MacCutchan14-Sep-14 0:10 
QuestionAre DLLs redundant in .NET? Pin
CatchExAs10-Sep-14 7:24
professionalCatchExAs10-Sep-14 7:24 
AnswerRe: Are DLLs redundant in .NET? Pin
Richard Deeming10-Sep-14 7:34
mveRichard Deeming10-Sep-14 7:34 
GeneralRe: Are DLLs redundant in .NET? Pin
CatchExAs10-Sep-14 9:38
professionalCatchExAs10-Sep-14 9:38 
GeneralRe: Are DLLs redundant in .NET? Pin
Dave Kreskowiak10-Sep-14 9:46
mveDave Kreskowiak10-Sep-14 9:46 
GeneralRe: Are DLLs redundant in .NET? Pin
CatchExAs10-Sep-14 9:50
professionalCatchExAs10-Sep-14 9:50 
GeneralRe: Are DLLs redundant in .NET? Pin
Dave Kreskowiak10-Sep-14 9:55
mveDave Kreskowiak10-Sep-14 9:55 
GeneralRe: Are DLLs redundant in .NET? Pin
PIEBALDconsult10-Sep-14 9:59
mvePIEBALDconsult10-Sep-14 9:59 
GeneralRe: Are DLLs redundant in .NET? Pin
Dave Kreskowiak10-Sep-14 10:04
mveDave Kreskowiak10-Sep-14 10:04 
GeneralRe: Are DLLs redundant in .NET? Pin
PIEBALDconsult10-Sep-14 10:58
mvePIEBALDconsult10-Sep-14 10:58 
GeneralRe: Are DLLs redundant in .NET? Pin
CatchExAs10-Sep-14 10:00
professionalCatchExAs10-Sep-14 10:00 
GeneralRe: Are DLLs redundant in .NET? Pin
Dave Kreskowiak10-Sep-14 10:07
mveDave Kreskowiak10-Sep-14 10:07 

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.