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.
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.
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.
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.
Bookmarks