Forum: ASP.NET Mar 25th, 2008 |
| Replies: 5 Views: 954 |
Forum: ASP.NET Mar 25th, 2008 |
| Replies: 4 Views: 1,338 Re: how to close asp.net 2005 application Please write the code
Button1.Attributes.Add("onclick", "window.close();");
page Load Event. Remove the rest of the things. if you still getting error send you aspx,aspx.cs page i will guide... |
Forum: ASP.NET Mar 25th, 2008 |
| Replies: 4 Views: 1,338 |
Forum: ASP.NET Mar 25th, 2008 |
| Replies: 2 Views: 1,407 Re: Global asax error Hi ,
What you are going to do is absolute wright.
before that pls check the global.asax.cs file whether the class has inherits with System.Web.HttpApplication class. more over check the class has... |
Forum: C# Mar 24th, 2008 |
| Replies: 6 Views: 1,035 |
Forum: C# Mar 24th, 2008 |
| Replies: 8 Views: 4,784 |
Forum: C# Mar 24th, 2008 |
| Replies: 8 Views: 4,784 |
Forum: C# Mar 24th, 2008 |
| Replies: 8 Views: 4,784 |
Forum: C# Mar 24th, 2008 |
| Replies: 8 Views: 4,784 |
Forum: VB.NET Mar 23rd, 2008 |
| Replies: 3 Views: 1,632 |
Forum: VB.NET Mar 23rd, 2008 |
| Replies: 3 Views: 1,632 |
Forum: ASP.NET Mar 23rd, 2008 |
| Replies: 5 Views: 1,734 Re: Global.asax problem Hi
you shouldn't organized global.asax in script folder.
global.aspx should be resides in the root directory of you asp.net application. more over there should be only one global.asax in asp.net... |
Forum: C# Mar 22nd, 2008 |
| Replies: 6 Views: 1,250 Re: Payroll program Please convert the hours to integer
ie Replace string hours = Console.ReadLine(); to
int hours=Convert.ToInt32(Console.ReadLine());
change the datatye numberofhours,weeklypay to int
i hope you... |
Forum: ASP.NET Mar 22nd, 2008 |
| Replies: 5 Views: 1,760 Re: javascript alert??? Please do the following
In Aspx page write the following
<script language="javascript">
function MyAlert(var msgStr)
{
alert(msgStr);
}
</script> |
Forum: ASP.NET Mar 22nd, 2008 |
| Replies: 5 Views: 1,734 |
Forum: ASP.NET Mar 22nd, 2008 |
| Replies: 5 Views: 1,734 |