Click here to Skip to main content
16,016,678 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralFixing header in Gridview - Header creeps out of div or panel Pin
maqsoodkoshy23-Jan-08 22:11
maqsoodkoshy23-Jan-08 22:11 
Questionrequired field validator doesnt work Pin
keyto23-Jan-08 21:55
keyto23-Jan-08 21:55 
QuestionUpLoad File Pin
AnhTin23-Jan-08 21:25
AnhTin23-Jan-08 21:25 
GeneralRe: UpLoad File Pin
N a v a n e e t h23-Jan-08 22:39
N a v a n e e t h23-Jan-08 22:39 
GeneralRe: UpLoad File Pin
bhanu1234523-Jan-08 23:59
bhanu1234523-Jan-08 23:59 
Questionhow to handle delete,cut of the textbox using javascript Pin
jagan12323-Jan-08 21:17
jagan12323-Jan-08 21:17 
AnswerRe: how to handle delete,cut of the textbox using javascript Pin
Sandeep Akhare23-Jan-08 23:31
Sandeep Akhare23-Jan-08 23:31 
GeneralDynamic Image Creation Optimization Pin
Expert Coming23-Jan-08 20:19
Expert Coming23-Jan-08 20:19 
try<br />
        {<br />
            draw = new System.Drawing.Bitmap(intWidth, intHeight);<br />
            g = System.Drawing.Graphics.FromImage(draw);<br />
            g.Clear(System.Drawing.Color.White);<br />
<br />
            //Draw images onto new image<br />
<br />
            System.Drawing.Bitmap bitmap = null;<br />
            string temp = "";<br />
            for (int i = 0; i < 25; i++)<br />
            {<br />
                for (int j = 0; j < 25; j++)<br />
                {<br />
                    if (arrInformation[i, j] != temp)<br />
                    {<br />
                        bitmap = new System.Drawing.Bitmap(Request.MapPath(arrInformation[i, j]));<br />
                        g.DrawImage(bitmap, 25 * i, 25 * j, 24, 24);<br />
                        temp = arrInformation[i, j];<br />
                    }<br />
                    else<br />
                    {<br />
                        g.DrawImage(bitmap, 25 * i, 25 * j, 24, 24);<br />
                    }<br />
                }<br />
            }<br />
            <br />
            Response.ContentType = "image/gif";<br />
            draw.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif);


arrInformation is a string array with the paths the the images that need to go in the slots

The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo

GeneralRe: Dynamic Image Creation Optimization Pin
N a v a n e e t h23-Jan-08 22:48
N a v a n e e t h23-Jan-08 22:48 
GeneralProblem in converting HTML page to user control Pin
AumSingh23-Jan-08 20:08
professionalAumSingh23-Jan-08 20:08 
GeneralRe: Problem in converting HTML page to user control Pin
N a v a n e e t h23-Jan-08 21:48
N a v a n e e t h23-Jan-08 21:48 
QuestionHow to use java script code in user control Pin
Sutheesh23-Jan-08 19:47
Sutheesh23-Jan-08 19:47 
AnswerRe: How to use java script code in user control Pin
pmarfleet23-Jan-08 19:51
pmarfleet23-Jan-08 19:51 
GeneralRe: How to use java script code in user control Pin
Sutheesh23-Jan-08 20:03
Sutheesh23-Jan-08 20:03 
GeneralRe: How to use java script code in user control Pin
N a v a n e e t h23-Jan-08 21:44
N a v a n e e t h23-Jan-08 21:44 
GeneralRe: How to use java script code in user control Pin
Sutheesh24-Jan-08 2:53
Sutheesh24-Jan-08 2:53 
GeneralPrinting a report Pin
samerh23-Jan-08 19:21
samerh23-Jan-08 19:21 
QuestionHow to Delete file on Server Pin
amin_behzadi23-Jan-08 19:16
professionalamin_behzadi23-Jan-08 19:16 
AnswerRe: How to Delete file on Server Pin
N a v a n e e t h23-Jan-08 21:51
N a v a n e e t h23-Jan-08 21:51 
GeneralFixing header in Gridview - Header creeps out of div or panel Pin
koshyjerrin23-Jan-08 19:16
koshyjerrin23-Jan-08 19:16 
GeneralApplication Run Very Slowly Pin
saravanan0523-Jan-08 19:15
saravanan0523-Jan-08 19:15 
GeneralAssending or Dessending order Pin
gunaarun23-Jan-08 18:41
gunaarun23-Jan-08 18:41 
Questionhow can i get a message box in asp.net using c# Pin
Radha2723-Jan-08 18:34
Radha2723-Jan-08 18:34 
AnswerRe: how can i get a message box in asp.net using c# Pin
Vasudevan Deepak Kumar23-Jan-08 18:40
Vasudevan Deepak Kumar23-Jan-08 18:40 
AnswerRe: how can i get a message box in asp.net using c# Pin
N a v a n e e t h23-Jan-08 19:08
N a v a n e e t h23-Jan-08 19:08 

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.