Click here to Skip to main content
15,890,123 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWeb.Config FIle Pin
Ravi_2128-Apr-09 2:20
Ravi_2128-Apr-09 2:20 
AnswerRe: Web.Config FIle Pin
Jain Vijay28-Apr-09 2:49
Jain Vijay28-Apr-09 2:49 
GeneralRe: Web.Config FIle Pin
Ravi_2128-Apr-09 2:58
Ravi_2128-Apr-09 2:58 
AnswerRe: Web.Config FIle Pin
Abhijit Jana28-Apr-09 3:01
professionalAbhijit Jana28-Apr-09 3:01 
GeneralRe: Web.Config FIle Pin
Ravi_2128-Apr-09 3:04
Ravi_2128-Apr-09 3:04 
Questionto inforce input language of a control Pin
ashujoshi28-Apr-09 2:13
ashujoshi28-Apr-09 2:13 
AnswerRe: to inforce input language of a control Pin
saanj28-Apr-09 21:07
saanj28-Apr-09 21:07 
Questionverification image Pin
Mohammed Elkholy28-Apr-09 1:43
Mohammed Elkholy28-Apr-09 1:43 
hi , i try to draw a virification image on my page

and i try some code and it worked alleady but the problem is all controls on the page not display
i want to draw this but without i lose the page controls


here the code i wrote


// Initialize graphics
Rectangle rectF = new Rectangle(0, 0, 100, 150);
Bitmap pic = new Bitmap(100, 150);
Graphics g = Graphics.FromImage(pic);
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
g.FillRectangle(new SolidBrush(Color.White), rectF);
//g.DrawRectangle (Pens.Aqua , rectF);
Font font = new Font("Times New Roman", 12);
// Set font direction & alignmentString
StringFormat format = new StringFormat();
format.Alignment = StringAlignment.Center;
// Finally, draw the font
g.DrawString(GenerateRendomText(), font, System.Drawing.Brushes.Black, rectF, format);
//Response.ContentType = "image/jpeg";
// Set the content type
Response.ContentType = "image/gif";
// Output the image to the OutputStream by using the Save method

pic.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif);


// Dispose objects
pic.Dispose();

MD_NADA

AnswerRe: verification image Pin
Herman<T>.Instance28-Apr-09 3:39
Herman<T>.Instance28-Apr-09 3:39 
QuestionHow to flip page of a thumbnail of PDF pages in VB.net Pin
Member 169908628-Apr-09 0:31
Member 169908628-Apr-09 0:31 
QuestionUnable to read data from csv file which contains hypen(-) Pin
Satish - Developer28-Apr-09 0:28
Satish - Developer28-Apr-09 0:28 
QuestionMicrosoft Tech-ed Event in India Pin
manish deora28-Apr-09 0:25
manish deora28-Apr-09 0:25 
AnswerRe: Microsoft Tech-ed Event in India Pin
saanj28-Apr-09 21:10
saanj28-Apr-09 21:10 
QuestionServer Access denied - Invalid HELO name (See RFC2821 4.1.1.1) Pin
Narsimha0927-Apr-09 23:38
Narsimha0927-Apr-09 23:38 
AnswerRe: Server Access denied - Invalid HELO name (See RFC2821 4.1.1.1) Pin
Paddy Boyd28-Apr-09 1:55
Paddy Boyd28-Apr-09 1:55 
Questionwant to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima27-Apr-09 23:14
Anjani Poornima27-Apr-09 23:14 
AnswerRe: want to make a caluclator using asp.net web apllication with c# Pin
Nishant Singh27-Apr-09 23:17
Nishant Singh27-Apr-09 23:17 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima27-Apr-09 23:50
Anjani Poornima27-Apr-09 23:50 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Vasudevan Deepak Kumar28-Apr-09 0:25
Vasudevan Deepak Kumar28-Apr-09 0:25 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima28-Apr-09 0:45
Anjani Poornima28-Apr-09 0:45 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Nishant Singh28-Apr-09 1:15
Nishant Singh28-Apr-09 1:15 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Anjani Poornima28-Apr-09 1:28
Anjani Poornima28-Apr-09 1:28 
GeneralRe: want to make a caluclator using asp.net web apllication with c# Pin
Abhijit Jana28-Apr-09 2:18
professionalAbhijit Jana28-Apr-09 2:18 
AnswerRe: want to make a caluclator using asp.net web apllication with c# Pin
Spunky Coder27-Apr-09 23:22
Spunky Coder27-Apr-09 23:22 
AnswerRe: want to make a caluclator using asp.net web apllication with c# Pin
ddravin200028-Apr-09 2:17
ddravin200028-Apr-09 2:17 

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.