Forum: ASP.NET Jan 23rd, 2009 |
| Replies: 3 Views: 874 Chk this site.
You will get an idea
http://asp.net-tutorials.com/state/viewstate/
Regards
Anil |
Forum: ASP.NET Jan 19th, 2009 |
| Replies: 1 Views: 1,358 Hi
I am using an instance of System.Drawing.Graphics class in my application
System.Drawing.Graphics gfxScreenshot;
I have used copyfromscreen method of this class.
... |
Forum: ASP.NET Jan 17th, 2009 |
| Replies: 2 Views: 485 thanks for ur reply
yaa but will it support authenticated web sites, i mean i have used forms authentication in my application. if i give the url will it not redirect me to login? please let me... |
Forum: ASP.NET Jan 15th, 2009 |
| Replies: 2 Views: 485 Hi
Am trying to capture the screen in my web application. I am able to capture the image locally but i am not able to capture the image on Client's machine. I am unable to capture the browser... |
Forum: ASP.NET Jan 15th, 2009 |
| Replies: 0 Views: 283 Hi
I want to install .net framework through c#. I have a button in my web page, once the user clicks that button i need to install the .net framework in user's system.
Can anyone help... |
Forum: ASP.NET Jan 7th, 2009 |
| Replies: 4 Views: 1,520 using System.Net.Mail;
MailMessage msg = new MailMessage(strFrom, strTo, strSubject, strBody);
SmtpClient cls = new SmtpClient("ur sys IP or n/w IP");
Attachment atchmntn = new... |
Forum: ASP.NET Jan 6th, 2009 |
| Replies: 1 Views: 354 I want to capture webpage screenshot as image and upload it into FileUpload Control in WebApplication(c#.net , asp.net, WINDOWS XP)
Please help me.... |
Forum: ASP.NET Jan 6th, 2009 |
| Replies: 1 Views: 480 Hii
you can try using the following code
SmtpClient cls = new SmtpClient("Your N/W IP or your sys IP");
cls.SendCompleted += new SendCompletedEventHandler(cls_SendCompleted);
In this... |
Forum: ASP.NET Jan 6th, 2009 |
| Replies: 2 Views: 391 you can use the following command
This works with visual studio command prompt
aspnet_compiler -p "source path" -v \ "destination path "
You can give your application path as source path and... |
Forum: ASP.NET Jan 5th, 2009 |
| Replies: 1 Views: 354 Hello Everybody
Am trying to capture the screen in my web application. Its working fine locally, when i deploy the application am not getting any image.
Anyone knows how to achieve... |