Click here to Skip to main content
15,917,174 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: query regarding displaying same text in 2 different languages at a time in same web page Pin
Christian Graus12-Mar-08 21:35
protectorChristian Graus12-Mar-08 21:35 
GeneralRe: query regarding displaying same text in 2 different languages at a time in same web page Pin
vidhyap12-Mar-08 22:10
vidhyap12-Mar-08 22:10 
GeneralRe: query regarding displaying same text in 2 different languages at a time in same web page Pin
Christian Graus12-Mar-08 22:56
protectorChristian Graus12-Mar-08 22:56 
GeneralRe: query regarding displaying same text in 2 different languages at a time in same web page Pin
vidhyap12-Mar-08 23:33
vidhyap12-Mar-08 23:33 
Generalconverting ink file to image in .net Pin
Piyush Vardhan Singh12-Mar-08 19:39
Piyush Vardhan Singh12-Mar-08 19:39 
GeneralRe: converting ink file to image in .net Pin
N a v a n e e t h12-Mar-08 19:42
N a v a n e e t h12-Mar-08 19:42 
GeneralRe: converting ink file to image in .net Pin
Piyush Vardhan Singh12-Mar-08 20:20
Piyush Vardhan Singh12-Mar-08 20:20 
GeneralRe: converting ink file to image in .net Pin
Piyush Vardhan Singh13-Mar-08 22:13
Piyush Vardhan Singh13-Mar-08 22:13 
Answer:-Rose | [Rose]

Try
Dim str1 As String = "AJoIHAOAgAQdA/QCTgMESBFFCgUBOBkgMgkAgIADAYwuOkUzCQCAoAIBsio6RTgIAP4DAAAAgH8VchyNP3IcjT/Aquo+AABVvh4HDIL8xfmEAAqJAUyD/ElfiS96BV8Lq6nBFxFyidXqeBSYyzN9/I8nwuMkRM1NKqMKyu/D7d+MgIXzi3nF8BgQYXCZOqWeOGGWKWCGSGIijnhphjnSRURVTVRYLA4Cqaqyqy666iZFLTPfg7bbb6bcTiNPhoOoqsIF5lKJCYmYuLiYkgiaklMTEkSlEomEjjz83nNACiYKhfE9eJpw0uEkssvwAIT5S75Ru2+OHHDfYIbFFPDwdnNycjAQIApcK4T6Fz6IW2uUrUtLQ4TNa0oQwxx1y10301y3vWEckdFqcKaD/Hffjmenh1d5vPNw5zDDUYqpxcXUy3jjw4xjvy8EhPGXTrHr40YRoQiIEIIQjFGE1Yxnjx7cMoAKOhiE+74+750bYQRqmraNIJNE9OaE+J2+JjyY6YrWxWpKrDhz5+Gx4dsAhPG3XhPn64wEpwmjG+HbtjAKMhKF9pF7SPHV3YCaqZFWwdrLgIP8VZ+Kt6dZxlvcZxt4GACF4MxsUeZrjhjhjjntx8KICjUShPtlPtf+A2W0StemVnvHfgCF8zx5mmfD3xzzzT1R4CGDET4gheOtjK0t8MMMsUMd+JnigAp7PYP+BRb+BTnxu9YkxPKuGOWNYmrne759fA8GLhFajXCOE6zXGeM7zm458s50hPj9Pj7c2HBitK1IVjfDl04898ca2laXA16tUMEJQjXDXTfTPPXDGJKVMldVmgCD+TPg+/B9HMxNTAExMIiYmJuJmIIQRImVrzz8nx00ClUrg/4JfP4Jd8c7raYkjW9Dw/Aup1FRHCtYrGp6c5jqhPjXvjP8mViITjGN+HxuOMs8LLGsxCUJQozGKICE8bdGbq4azIRQRhBAEU4RRhOEZ3278MYACjcRg/4NQP4NRefC06zqLrfgc+iF8d944ueimCOGmXD4TC4ubFzAhs1Ylg4DAcSgYCAQsrNwMFAgCiYKg/4Nev4Ne5hz5OfIhfB6eD1xOIYDAsFgwIbJGA4OHt5+ViYWEApDGoT8Ha34Os8MWXBpllhhRjCVJUi2aaZwhfBKeCDimslw0uAoskihhntvwN+PRY+LBoP4w9Wd898c5mwlLefB8PvMAAqVAUmE/Bxt+DjdS1tEdFJYJUx4MrHHHWtYXxZ9WnJhgjC7DG+W98c53RpGkMGTBkzZtWTVHQSzyy45gIT4rz4r1xsd8GFhnG7DauCOKGCkMk6ZcWeWOeWOOc7xhKWCmLBgxYMUrTteOOeW+G+G69MdqYaAg/iDzW+O85zbjOc2iI1w4aikzN5mZJSTCEIRKCQmZud9fP6q"
'dim
Dim newIsfByteArray As Byte() = Convert.FromBase64String(str1)
Dim _inkOverlay As New MSINKAUTLib.InkOverlay
_inkOverlay.Ink.Load(newIsfByteArray)
Dim newIsfByteArray1 As Byte() = _inkOverlay.Ink.Save(MSINKAUTLib.InkPersistenceFormat.IPF_GIF, MSINKAUTLib.InkPersistenceCompressionMode.IPCM_Default)
'Dim gifFile As New IO.FileStream("c:\test.gif", IO.FileMode.OpenOrCreate)
'gifFile.Write(newIsfByteArray1, 0, newIsfByteArray1.Length)
'gifFile.Close()
'a.Style.Add("src", "url([C:\Documents and Settings\tas\Desktop\ATT00001.jpg;])")
' a.Style.Add("src", "C:\Documents and Settings\tas\Desktop\ATT00001.jpg")
Context.Response.ContentType = "image/jpeg"
Context.Response.OutputStream.Write(newIsfByteArray1, 0, newIsfByteArray1.Length)

Catch ex As Exception
End Try

Piyush Vardhan Singh
p_vardhan14@rediffmail.com
http://holyschoolofvaranasi.blogspot.com
http://holytravelsofvaranasi.blogspot.com



Questionhow to generate pdf report dynamically from dataset without using response object in asp.net. Pin
ashok@techxygen12-Mar-08 19:38
ashok@techxygen12-Mar-08 19:38 
AnswerRe: how to generate pdf report dynamically from dataset without using response object in asp.net. Pin
Christian Graus12-Mar-08 20:22
protectorChristian Graus12-Mar-08 20:22 
Generalonline payment module Pin
Member 465900112-Mar-08 19:36
Member 465900112-Mar-08 19:36 
GeneralRe: online payment module Pin
Christian Graus12-Mar-08 20:24
protectorChristian Graus12-Mar-08 20:24 
GeneralDisplaying Server Date and Time on client page Pin
www.Developerof.NET12-Mar-08 19:33
www.Developerof.NET12-Mar-08 19:33 
GeneralRe: Displaying Server Date and Time on client page Pin
N a v a n e e t h12-Mar-08 19:41
N a v a n e e t h12-Mar-08 19:41 
GeneralRe: Displaying Server Date and Time on client page Pin
www.Developerof.NET12-Mar-08 22:58
www.Developerof.NET12-Mar-08 22:58 
Generalcheck if row with datakey againsts session value in gridview Pin
uglyeyes12-Mar-08 19:18
uglyeyes12-Mar-08 19:18 
GeneralRe: check if row with datakey againsts session value in gridview Pin
N a v a n e e t h12-Mar-08 19:38
N a v a n e e t h12-Mar-08 19:38 
GeneralAbout Datagrid Pin
Member 404117812-Mar-08 19:08
Member 404117812-Mar-08 19:08 
GeneralRe: About Datagrid Pin
N a v a n e e t h12-Mar-08 19:13
N a v a n e e t h12-Mar-08 19:13 
Questionhow to delete the files in the client system Pin
lakshmichawala12-Mar-08 19:06
lakshmichawala12-Mar-08 19:06 
AnswerRe: how to delete the files in the client system Pin
N a v a n e e t h12-Mar-08 19:12
N a v a n e e t h12-Mar-08 19:12 
GeneralRe: how to delete the files in the client system Pin
lakshmichawala12-Mar-08 19:21
lakshmichawala12-Mar-08 19:21 
GeneralRe: how to delete the files in the client system Pin
N a v a n e e t h12-Mar-08 19:24
N a v a n e e t h12-Mar-08 19:24 
AnswerRe: how to delete the files in the client system Pin
Christian Graus12-Mar-08 20:24
protectorChristian Graus12-Mar-08 20:24 
Questionhow to reduce the size of a webpage Pin
chithra.r12-Mar-08 19:02
chithra.r12-Mar-08 19:02 

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.