Wednesday, November 26, 2008
Friday, November 21, 2008
Open in New window
<asp:Button ID="Button1" Text="Click Me" runat="server"/>
For Button, we need to add Window.Open in Page_Load event..
protected void Page_Load(object sender, EventArgs e)
{
Button1.Attributes.Add("onclick", "window.open ('Retieringsecurities.aspx', 'popupwindow','width=600,height=650,scrollbars,resizable=false')");
}
If you use Hyper link, you don't need to add anycode in code behind, add it in Hyperlink control itself.
<asp:hyperlink id="HyperLink1" runat="server" navigateurl='Retieringsecurities.aspx'
target="_blank" text="CoverageList"
onclick="window.open (this.href, 'popupwindow','width=600,height=650,scrollbars,resizable=false');
return false;"/>
For Button, we need to add Window.Open in Page_Load event..
protected void Page_Load(object sender, EventArgs e)
{
Button1.Attributes.Add("onclick", "window.open ('Retieringsecurities.aspx', 'popupwindow','width=600,height=650,scrollbars,resizable=false')");
}
If you use Hyper link, you don't need to add anycode in code behind, add it in Hyperlink control itself.
<asp:hyperlink id="HyperLink1" runat="server" navigateurl='Retieringsecurities.aspx'
target="_blank" text="CoverageList"
onclick="window.open (this.href, 'popupwindow','width=600,height=650,scrollbars,resizable=false');
return false;"/>
CLR Trigger
http://www.sqlservercentral.com/articles/SS2K5+-+CLR+Integration/creatingagenericaudittriggerwithsql2005clr/2502/
Monday, November 10, 2008
Timesheet Module
Timesheet module alllows managers to assign projects or tasks to users. it allow users to enter hours worked on a project or a task. Following an approval request, a project manager can approve or reject the submitted hours. It also allows project managers to genearate time reports in order to track worked hours. Once a time sheet is filled and submitted, An approval request will send to his/her project manager via the email notification. Then, the project manager can approve or reject the time sheet. Once time sheets are approved, project managers can see how much time each employee has spent on each project. This module have following feauters
Track employee time spent on different projects.
Assign rates by employee or project for time charging purposes.
Track project costs and schedules with the project management and expense features.
Tracks the employee Leave/Vacation details
Tracks the overtime hours and help managers to add/deleting resources
Provides customize reports
Track employee time spent on different projects.
Assign rates by employee or project for time charging purposes.
Track project costs and schedules with the project management and expense features.
Tracks the employee Leave/Vacation details
Tracks the overtime hours and help managers to add/deleting resources
Provides customize reports
Subscribe to:
Posts (Atom)