Click here to Skip to main content
15,916,835 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Email validation against database Pin
Ankur\m/7-Feb-13 1:50
professionalAnkur\m/7-Feb-13 1:50 
QuestionValidation of viewstate MAC failed for ASP.NET 4.0 application Pin
smehta.er6-Feb-13 11:24
smehta.er6-Feb-13 11:24 
AnswerRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
Keith Barrow6-Feb-13 12:33
professionalKeith Barrow6-Feb-13 12:33 
AnswerRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
karthickpradhaban11-Feb-13 4:46
karthickpradhaban11-Feb-13 4:46 
GeneralRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
smehta.er12-Feb-13 6:28
smehta.er12-Feb-13 6:28 
GeneralRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
karthickpradhaban13-Feb-13 5:24
karthickpradhaban13-Feb-13 5:24 
GeneralRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
smehta.er13-Feb-13 5:44
smehta.er13-Feb-13 5:44 
GeneralRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
karthickpradhaban13-Feb-13 5:45
karthickpradhaban13-Feb-13 5:45 
GeneralRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
smehta.er14-Feb-13 7:10
smehta.er14-Feb-13 7:10 
GeneralRe: Validation of viewstate MAC failed for ASP.NET 4.0 application Pin
karthickpradhaban7-Mar-13 5:27
karthickpradhaban7-Mar-13 5:27 
QuestionDynamic width DIV next to a static width DIV Pin
jojoba20116-Feb-13 0:31
jojoba20116-Feb-13 0:31 
AnswerRe: Dynamic width DIV next to a static width DIV Pin
Keith Barrow6-Feb-13 12:54
professionalKeith Barrow6-Feb-13 12:54 
QuestionRe: Dynamic width DIV next to a static width DIV Pin
jojoba20116-Feb-13 18:05
jojoba20116-Feb-13 18:05 
AnswerRe: Dynamic width DIV next to a static width DIV Pin
Richard Deeming7-Feb-13 1:51
mveRichard Deeming7-Feb-13 1:51 
QuestionRe: Dynamic width DIV next to a static width DIV Pin
jojoba201113-Feb-13 22:29
jojoba201113-Feb-13 22:29 
QuestionMaster page Elements Id Pin
mohammadkaab5-Feb-13 23:06
mohammadkaab5-Feb-13 23:06 
AnswerRe: Master page Elements Id Pin
Deflinek6-Feb-13 2:54
Deflinek6-Feb-13 2:54 
QuestionCrystal Report not showing Pin
Kashinath Patil5-Feb-13 22:14
Kashinath Patil5-Feb-13 22:14 
AnswerRe: Crystal Report not showing Pin
karthickpradhaban11-Feb-13 4:50
karthickpradhaban11-Feb-13 4:50 
Questionconvert from Div.innerhtml to image in vb.net Pin
premaa36@gmail.com5-Feb-13 1:45
premaa36@gmail.com5-Feb-13 1:45 
AnswerRe: convert from Div.innerhtml to image in vb.net Pin
Sandeep Mewara5-Feb-13 2:23
mveSandeep Mewara5-Feb-13 2:23 
Start from here: Generating ASP.NET Images on the Fly Article[^]

Sample:
VB
Dim oBitmap As Bitmap = New Bitmap(468, 60)
Dim oGraphic As Graphics = Graphics.FromImage(oBitmap)
Dim oColor As System.Drawing.Color
Dim sColor As String = Request("BackgroundColor")
Dim sText As String = Request("Text")
Dim sFont As String = Request("Font")
Dim oBrush As New SolidBrush(oColor)
Dim oBrushWrite As New SolidBrush(Color.White)
oGraphic.FillRectangle(oBrush, 0, 0, 468, 60)
DrawString(String, Font, Brush, FPoint)
Dim oFont As New Font(sFont, 13)
Dim oPoint As New PointF(5F, 5F)
oGraphic.DrawString(sText, oFont, oBrushWrite, oPoint)
oBitmap.Save(Server.MapPath("generated_image.jpg"), ImageFormat.Jpeg)
//Response.Write("View the generated image <a target=""_blank"" href=""generated_image.jpg"">here</a>")
Response.ContentType = "image/jpeg"
oBitmap.Save (Response.OutputStream, ImageFormat.Jpeg)

Sandeep Mewara
Microsoft ASP.NET MVP 2012 & 2013


[My Latest Post(s)]:
My Blog
Server side Delimiters in ASP.NET
How to extend a WPF Textbox to Custom Picker

QuestionCrystal report Pin
Kashinath Patil4-Feb-13 20:04
Kashinath Patil4-Feb-13 20:04 
AnswerRe: Crystal report Pin
Sandeep Mewara5-Feb-13 2:11
mveSandeep Mewara5-Feb-13 2:11 
QuestionMobile Compatibility Pin
Murugavel Sadagopan4-Feb-13 19:36
Murugavel Sadagopan4-Feb-13 19:36 
AnswerRe: Mobile Compatibility Pin
Sandeep Mewara5-Feb-13 2:04
mveSandeep Mewara5-Feb-13 2:04 

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.