Click here to Skip to main content
15,913,939 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionsingle instance of an application using Application start in global.asax. Pin
Pranav Thakur9-Jun-08 21:39
Pranav Thakur9-Jun-08 21:39 
AnswerRe: single instance of an application using Application start in global.asax. Pin
Vasudevan Deepak Kumar11-Jun-08 1:41
Vasudevan Deepak Kumar11-Jun-08 1:41 
Questionhow to take data row to previous page without opening the new window Pin
preetpal9-Jun-08 21:29
preetpal9-Jun-08 21:29 
AnswerRe: how to take data row to previous page without opening the new window Pin
eyeseetee9-Jun-08 21:39
eyeseetee9-Jun-08 21:39 
GeneralRe: how to take data row to previous page without opening the new window Pin
preetpal9-Jun-08 22:43
preetpal9-Jun-08 22:43 
Questionfont moving on the user machine Pin
Pankaj Garg9-Jun-08 21:15
Pankaj Garg9-Jun-08 21:15 
AnswerRe: font moving on the user machine Pin
eyeseetee9-Jun-08 21:44
eyeseetee9-Jun-08 21:44 
QuestionRe: font moving on the user machine Pin
Pankaj Garg9-Jun-08 21:51
Pankaj Garg9-Jun-08 21:51 
i am dowloading it form my application , but not being saved to the user machine
here is the code.
StringBuilder sb = new StringBuilder();<br />
        SHGetFolderPath(IntPtr.Zero, 0x0014, IntPtr.Zero, 0x0000, sb);//CSIDL_FONTS = 0x0014          <br />
        if (Directory.Exists(sb.ToString()))<br />
        {            <br />
            DirectoryInfo f = new DirectoryInfo(Server.MapPath("fonts"));           <br />
            foreach (FileInfo fil in f.GetFiles())<br />
            {<br />
                if (!File.Exists(sb.ToString() + "\\" + fil.Name.ToString()))<br />
                {<br />
                    fil.CopyTo(sb.ToString() + "\\" + fil.Name.ToString(), true);<br />
                }<br />
                else<br />
                {<br />
                    Response.Write(sb.ToString() + "\\" + fil.Name.ToString());<br />
                }<br />
            }<br />
        }


If you have an apple & I have an apple and we exchange our apples, then each of us will still have only one apple but if you have an idea & I have an idea and we exchange our ideas, then each of us will have two ideas!

AnswerRe: font moving on the user machine Pin
N a v a n e e t h9-Jun-08 22:46
N a v a n e e t h9-Jun-08 22:46 
QuestionRe: font moving on the user machine Pin
Pankaj Garg9-Jun-08 22:50
Pankaj Garg9-Jun-08 22:50 
AnswerRe: font moving on the user machine Pin
N a v a n e e t h9-Jun-08 23:10
N a v a n e e t h9-Jun-08 23:10 
GeneralRe: font moving on the user machine Pin
Pankaj Garg9-Jun-08 23:13
Pankaj Garg9-Jun-08 23:13 
GeneralRe: font moving on the user machine Pin
N a v a n e e t h9-Jun-08 23:20
N a v a n e e t h9-Jun-08 23:20 
GeneralRe: font moving on the user machine Pin
Pankaj Garg9-Jun-08 23:54
Pankaj Garg9-Jun-08 23:54 
GeneralRe: font moving on the user machine Pin
Ashfield10-Jun-08 0:01
Ashfield10-Jun-08 0:01 
AnswerRe: font moving on the user machine Pin
eyeseetee10-Jun-08 0:24
eyeseetee10-Jun-08 0:24 
GeneralRe: font moving on the user machine Pin
Pankaj Garg10-Jun-08 1:38
Pankaj Garg10-Jun-08 1:38 
GeneralRe: font moving on the user machine Pin
eyeseetee10-Jun-08 2:12
eyeseetee10-Jun-08 2:12 
Questionexport image to excel Pin
saravanan059-Jun-08 20:45
saravanan059-Jun-08 20:45 
AnswerRe: export image to excel Pin
eyeseetee9-Jun-08 21:45
eyeseetee9-Jun-08 21:45 
QuestionCan you have a gridview within a modalpopup in ajax ? Pin
thedom29-Jun-08 19:06
thedom29-Jun-08 19:06 
AnswerRe: Can you have a gridview within a modalpopup in ajax ? Pin
eyeseetee9-Jun-08 21:46
eyeseetee9-Jun-08 21:46 
GeneralRe: Can you have a gridview within a modalpopup in ajax ? Pin
thedom210-Jun-08 2:18
thedom210-Jun-08 2:18 
GeneralRe: Can you have a gridview within a modalpopup in ajax ? Pin
eyeseetee10-Jun-08 2:28
eyeseetee10-Jun-08 2:28 
GeneralRe: Can you have a gridview within a modalpopup in ajax ? Pin
thedom210-Jun-08 11:16
thedom210-Jun-08 11:16 

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.