Search

You searched for the word(s): userid:790490

Matching Posts

  • Re: Instead of sever.MapPath in asp.net anything in windows application for C#.net????

    AppDomain.BaseDirectory returns current application assembly directory path.
    Posted to Free For All (Forum) by teribium on 4/2/2008
  • Re: SQL query to one column od database into two columns

    Below query should resolve your problem..... SELECT CourseID, COUNT (SkillTypeID) SkillCount, 'Primary' SkillType FROM EmpSkill GROUP BY CourseID, SkillTypeID HAVING SkillTypeID = 1 UNION SELECT CourseID, COUNT (SkillTypeID) SkillCount, 'Secondary' SkillType FROM EmpSkill GROUP BY CourseID, SkillTypeID HAVING SkillTypeID = 2 Please, let me know, if this is not you are exactly looking for.
  • Re: Stored procedure?

    Hi, I wish I could test this query but hope this gets you closer to solution. SELECT a.forum_sub_topic_id, a.quest_no, a.question, a.question_description, a.question_raised_by, a.question_raised_date, b.forum_sub_head, CountQuestion.Expr2 NumberOfQuestion FROM FORUM_QUESTIONS a INNER JOIN FORUM_SUB_MASTER b ON a.forum_sub_topic_id = b.forum_sub_topic_id LEFT OUTER JOIN ( SELECT MAX (a.question_raised_date) Expr1 FROM FORUM_QUESTIONS a INNER JOIN FORUM_SUB_MASTER b ON a.forum_sub_topic_id = b.forum_sub_topic_id
  • Re: Web application project or Web site project which is "better"?

    Visual Studio 2005 Website Projects (which is a default project type) is not recommended for big size and long term maintenance project. Instead Web application projects should be created. However the prerequisite is that you would need to install Visual Studio 2005 Service Packs 1 and other patches to be able to create web application projects. Here are some links on the same references http://msdn2.microsoft.com/en-us/library/aa730880.aspx http://weblogs.asp.net/scottgu/archive/2006/05/08/445742
    Posted to VS 2005 Web Application Projects (Forum) by teribium on 3/14/2008
    Filed under: WebSite Vs Web Application Project
  • Re: Really stupid javascript question ;)

    Try this one This worked for me.. < script type= "text/javascript" language= "javascript" > function ChangeNextDueDate() { var ans = confirm('Are you sure you wish to change this date?'); alert(ans);//Check the value of ans if (ans == true) // no single quote { alert("In IF Section"); //Check if you realy entered in if condition. __doPostBack('ctl00$WebFormContent$ctl05$NextDueDate',''); } return false; } </ script > < body >
    Posted to Client Side Web Development (Forum) by teribium on 3/13/2008
Page 1 of 1 (5 items)