Click here to Skip to main content
15,886,362 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to convert HTMl Div to word Pin
abjchr12-Feb-15 22:59
abjchr12-Feb-15 22:59 
GeneralRe: How to convert HTMl Div to word Pin
Richard MacCutchan12-Feb-15 23:45
mveRichard MacCutchan12-Feb-15 23:45 
GeneralRe: How to convert HTMl Div to word Pin
abjchr12-Feb-15 23:55
abjchr12-Feb-15 23:55 
GeneralRe: How to convert HTMl Div to word Pin
Richard MacCutchan13-Feb-15 0:11
mveRichard MacCutchan13-Feb-15 0:11 
Questionhow do I insert word, pdf and text to sql database in vb.asp Pin
Shelby12312-Feb-15 14:11
Shelby12312-Feb-15 14:11 
GeneralRe: how do I insert word, pdf and text to sql database in vb.asp Pin
PIEBALDconsult12-Feb-15 14:17
mvePIEBALDconsult12-Feb-15 14:17 
AnswerRe: how do I insert word, pdf and text to sql database in vb.asp Pin
Rollin Shultz12-Feb-15 15:59
Rollin Shultz12-Feb-15 15:59 
Questioniframe is displaying the same document even I am trying to open different documents. Even in byte array is containing different bytes and number of bytes. Pin
VPSingh malhi11-Feb-15 13:58
professionalVPSingh malhi11-Feb-15 13:58 
i am reading pdf files saved on MSSQL server in form of byte array and trying to display in iframe. I am facing the problem. the first file I had opened is opening again and again even deleting cookies and clear up the temp folder. the code I am using is as below:

Dim RID As String
RID = Request.QueryString("RPTID")
Dim rptProp() As String = RPT.getReport(CInt(RID)) 'Reading file attributes from database using a function writtent in an other class.

If rptProp(6) <> "" Then
Filename = rptProp(7)
Me.Filename = Filename
Me.Extension = Mid(rptProp(7), rptProp(7).IndexOf("."c) + 2, rptProp(7).Length)
Dim doc() As Byte = Nothing
doc = RPT.getRepDoc(CInt(RID)) 'Reading exact file bytes stored in MS SQL database using a function getRepDoc(Document_ID as integer) written in another class designed for data communication between web forms and database.
If doc IsNot Nothing Then
If Extension = "pdf" Then
Dim base64String As String = Convert.ToBase64String(doc, 0, doc.Length)
Dim pdfIFrameSrc = "data:Application/pdf;base64,{0}" + base64String

' set the src attribute
Me.iFRM.ResolveUrl(pdfIFrameSrc) ' iFRM is an ID of iFrame
End If
End If

modified 12-Feb-15 5:17am.

QuestionMVC Newbie Question - Controller and View - page not found Pin
jkirkerx11-Feb-15 8:17
professionaljkirkerx11-Feb-15 8:17 
Answer[GOT IT] - got that from that Google App Pin
jkirkerx11-Feb-15 11:06
professionaljkirkerx11-Feb-15 11:06 
AnswerRe: MVC Newbie Question - Controller and View - page not found Pin
Afzaal Ahmad Zeeshan12-Feb-15 5:53
professionalAfzaal Ahmad Zeeshan12-Feb-15 5:53 
GeneralRe: MVC Newbie Question - Controller and View - page not found Pin
jkirkerx12-Feb-15 10:45
professionaljkirkerx12-Feb-15 10:45 
AnswerRe: MVC Newbie Question - Controller and View - page not found Pin
Afzaal Ahmad Zeeshan13-Feb-15 0:06
professionalAfzaal Ahmad Zeeshan13-Feb-15 0:06 
GeneralRe: MVC Newbie Question - Controller and View - page not found Pin
jkirkerx13-Feb-15 6:23
professionaljkirkerx13-Feb-15 6:23 
AnswerRe: MVC Newbie Question - Controller and View - page not found Pin
Afzaal Ahmad Zeeshan13-Feb-15 7:02
professionalAfzaal Ahmad Zeeshan13-Feb-15 7:02 
GeneralRe: MVC Newbie Question - Controller and View - page not found Pin
jkirkerx13-Feb-15 7:31
professionaljkirkerx13-Feb-15 7:31 
QuestionHow to retrieve data from a remote desktop database via REST API Pin
IsoftTech11-Feb-15 4:07
IsoftTech11-Feb-15 4:07 
AnswerRe: How to retrieve data from a remote desktop database via REST API Pin
Afzaal Ahmad Zeeshan11-Feb-15 4:49
professionalAfzaal Ahmad Zeeshan11-Feb-15 4:49 
GeneralRe: How to retrieve data from a remote desktop database via REST API Pin
IsoftTech11-Feb-15 23:28
IsoftTech11-Feb-15 23:28 
AnswerRe: How to retrieve data from a remote desktop database via REST API Pin
Afzaal Ahmad Zeeshan12-Feb-15 3:08
professionalAfzaal Ahmad Zeeshan12-Feb-15 3:08 
Questionerror while updating the ms access data base after hosting the site on domain Pin
Member 1100557011-Feb-15 3:35
Member 1100557011-Feb-15 3:35 
AnswerRe: error while updating the ms access data base after hosting the site on domain Pin
Richard Deeming11-Feb-15 4:18
mveRichard Deeming11-Feb-15 4:18 
QuestionJavascript inside updatepanel cannot access server side variable after potback Pin
Moodhi10-Feb-15 11:40
Moodhi10-Feb-15 11:40 
AnswerRe: Javascript inside updatepanel cannot access server side variable after potback Pin
jkirkerx10-Feb-15 13:21
professionaljkirkerx10-Feb-15 13:21 
GeneralRe: Javascript inside updatepanel cannot access server side variable after potback Pin
Moodhi12-Feb-15 11:32
Moodhi12-Feb-15 11:32 

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.