Click here to Skip to main content
       

ASP.NET

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
QuestionHow to create loocal SMTP server in windowsmembersani_alam23 Jan '13 - 23:59 
i want to create a local smtp server in win xp or win7
need help!Confused | :confused:
AnswerRe: How to create loocal SMTP server in windowsmvpRichard MacCutchan24 Jan '13 - 1:54 
Then you need to study RFC2821[^].
QuestionHow to extract data of a table.memberanubhaw.gupta23 Jan '13 - 20:06 
I need a help. what i exactly wanna do is that i want to make an android app for my college attendance and everything. (That's my final goal.)

But before that i want to make a webpage where i can do the same. Suppose a guy will enter his id and password and then i'll show the content in a table.
 
http://img404.imageshack.us/img404/5751/evar.jpg[^]
Above is the college's page where i do the same. but when i extract the html source of the page, i dont get table's data. but when i manuallly select the table and then view the page source,i can see that.
 
What i exactly wanna know is that how to that in dotnet? i mean how to get the source of the tabble.
Help ::(
Questionhow to use ckeditor in asp.net?memberDaxiii23 Jan '13 - 0:09 
i want to know how to use ckeditor with database in asp.net?
AnswerRe: how to use ckeditor in asp.net?membermark merrens23 Jan '13 - 5:31 
Start here[^]: if anyone will know, it's them.
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
nils illegitimus carborundum
 
me, me, me

AnswerRe: how to use ckeditor in asp.net?mvpSandeep Mewara23 Jan '13 - 8:20 
To get some idea and get started:
Integrate CKEditor with ASP.NET page[^]
CKEditor for ASP.NET Control Integration Guide[^]
Sandeep Mewara
Microsoft ASP.NET MVP 2012 & 2013
 

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

Questionhow resize this image before uploadingmemberJassim Rahma22 Jan '13 - 8:44 
Hi,
 
I am using this code to upload using Ajaxuploader:
 
using (Stream stream = item.OpenStream())
{
    using (System.Drawing.Image img = System.Drawing.Image.FromStream(stream))
    {
        img.Save(Server.MapPath(String.Format("{0}/{1}/posts/{2}/{3}.png", Application["MemberMediaDirectory"], Session["volow_member_guid"], RouteData.Values["GUID"], image_guid)), ImageFormat.Png);
    }
}
I want to know how can I resize the image before uploading to 906width X 360height?

 
Technology News @ www.JassimRahma.com

AnswerRe: how resize this image before uploadingmemberjkirkerx22 Jan '13 - 12:25 
You can't. submitting files to a website is voluntary, and the user has to choose which files to submit.
 
Websites that run in a browser on the client system run in a protective bubble, that is separated from the operating system. Sort of a sealed container.
 
You can resize the image after uploading by using system.drawing, measuring the size of the uploaded image, calculating the new height and width, and the new canvas size, and then creating a new blank canvas, and then overlay the original image over the canvas and save the new file.
 
Or you can write several programs in c++ to run on the client computer such as Linux, OSX, Windows, that will resize, and transmit the new bytestream to a webservice as a non-primitive, and then make the write to the disk drive.
AnswerRe: how resize this image before uploadingmemberRichard Deeming23 Jan '13 - 1:53 
Have a look at Plupload[^]. In a modern browser, it supports resizing PNG and JPEG files before uploading.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionIssue in web farm scenario deployment ASP.NETmembermukeshgaharwar21 Jan '13 - 19:20 
I have deployed a web application in web farm scenario with a load balancer and multiple servers. If a request coming to one server it works but if to the other server it not works. What issues can it have??

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 23 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid