Hello guys,
Can you give a project. I am newly hired .Net Developer in the company and I don't have a project yet I want to make myself busy. Anyone could give me a simple website project.
Thanks,
rbMazter:)
Printable View
Hello guys,
Can you give a project. I am newly hired .Net Developer in the company and I don't have a project yet I want to make myself busy. Anyone could give me a simple website project.
Thanks,
rbMazter:)
Wow first time I encountered this. :)
Build your tools while they don't have anything for you. I assume you are only asp.net/code behind structure.
1. Extend the Web.UI controls. E.g. Extend repeater control that have the paging already built in on it when you use it
2. Recreate/solve common issues. E.g. Up to now asp:FileUpload doesn't work well with asp:UpdatePanel natively, recreate it so you'll not scratch your head when you encounter it.
That would be enough to keep you busy.
Programmers: Need Help!
using System.Net.Mail;
namespace MvcMembership
{
public interface ISmtpClient
{
void Send(MailMessage mailMessage);
}
}
using System.Net.Mail;
namespace MvcMembership
{
public class SmtpClientProxy : ISmtpClient
{
private readonly SmtpClient _smtpClient;
public SmtpClientProxy()
{
_smtpClient = new SmtpClient();
}
public SmtpClientProxy(SmtpClient smtpClient)
{
_smtpClient = smtpClient;
}
#region ISmtpClient Members
public void Send(MailMessage mailMessage)
{
_smtpClient.Send(mailMessage);
}
#endregion
}
}
[AcceptVerbs(HttpVerbs.Post)]
public RedirectToRouteResult ResetPassword(Guid id)
{
var user = _userService.Get(id);
var newPassword = _passwordService.ResetPassword(user);
var body = ResetPasswordBody + newPassword;
var msg = new MailMessage();
msg.To.Add(user.Email);
msg.Subject = ResetPasswordSubject;
msg.Body = body;
_smtpClient.Send(msg);
return RedirectToAction("Password", new { id });
}
ERROR:
Server Error in '/' Application.
Syntax error, command unrecognized. The server response was: Syntax error, command unrecognized.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.Mail.SmtpException: Syntax error, command unrecognized. The server response was: Syntax error, command unrecognized.
Source Error:
Line 19: public void Send(MailMessage mailMessage)
Line 20: {
Line 21: _smtpClient.Send(mailMessage);
Line 22: }
Line 23:
Source File: C:\Users\STS-Admin\Documents\Visual Studio 2010\Projects\WikiUserManagement\src\MvcMembership\SmtpClientProxy.cs Line: 21
Develop a website Where online users set audio video calls each other ....
then send me code............. Challenger for you. I encountered number of problems.:)
First separate your interface to a separate file. Do not make that a habit you have it with the consuming class.
Did you forgot to reference the dll?
I separate my interface. I am using MVC 3 .
So far I already solve the problem in sending emails.
Thanks so much. :)
Uhm are you the one develop this website?
No worries. What was the issue? Nope, I don't own this domain. If you look at the footer this is vBulletin that was just skinned by the owner
Great Thread!!.. I am sure if you have joined company then company shall give you projects to work on.
Good thread!
Nice discussion. This is what I want to read!
Take concepts from Some real world examples (like datingwebsite) and develop a new one using your skills