Search

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

Matching Posts

  • Re: dynamically create .html page from aspx

    The following link might be useful to you. http://forums.asp.net/t/1416766.aspx
    Posted to Getting Started (Forum) by cshark on 7/20/2009
  • select last 4 quarters

    I was trying to write a sql query that selects last 4 quarters. User provides year and quarter, based on that I need to show the selected quarter and the previous 3 quarters. E.g. If user selects 2008 and Q1, then I need to select 2008,Q1 2007,Q4, 2007,Q3 2007,Q2 I apprcieate your pointers.
  • Re: Create a data monitoring web gauge

    Thanks Gary, but the version of asp.net I am using is 2.0.
    Posted to Web Forms (Forum) by cshark on 7/13/2009
  • Re: Crystal report bursting

    [quote user="jeyaseelan@ajsquare.net"] Csharp thanks for your post. I already gave the answer in this thread . [/quote] Thanks Jeya. The problem is, the generation of the report is automated. There is no webpage where the user can go and select the department from the dropdown. This report is scheduled to generate every month, which consists the data of all the departments. I saw your thread, can we email the data of that particular dept to that dept only? not sending the entire report
    Posted to Crystal Reports (Forum) by cshark on 7/8/2009
  • Re: Crystal report bursting

    Thanks for you suggestion. I will try the it. However, the problem is: The data in the report is grouped by departments. Data related to particular department should be emailed to that concerned users (email ids to be read from database). Dept1 --> Dept1Users Dept2 --> Dept2Users No user will get to see any department other than his. Thanks, S
    Posted to Crystal Reports (Forum) by cshark on 7/7/2009
  • Create a data monitoring web gauge

    I need to create a web data gauge using c#. It will primarily have numbers 0-100 on the outer semi-circle and an arrow pointing the data element. (Just like a speedometer) It will be something like the data monitoring web guage in the following page. http://www.componentart.com/products/aspnetajax/visualization.aspx I would appreciate any pointers. Thanks, S
    Posted to Web Forms (Forum) by cshark on 7/7/2009
  • Re: Checkbox validation

    You can add the return function attribute to the submit button with the below script. You could convert this function to be used with a custom validator also. function ValidateCheckBox() { var chkBoxArray = document.getElementsByTagName('input'); if(chkBoxArray.length>0) { for(i=0; i<chkBoxArray.length; i++) { //Check for radio button with groupname if((chkBoxArray[i].type == 'checkbox')) { //Uncheck Radio Button if(chkBoxArray[i].checked ==true) { return true; } } } } } function
    Posted to Web Forms (Forum) by cshark on 7/7/2009
  • Re: To display the changes in home page

    You might have to use a current table and a history table (log table) to track the changes. Whenever user modifies the data, log the exisiting record to the history table and insert the updates to the current table. Finally, in the home page compare the changes between the two tables and display the updates.
    Posted to Web Forms (Forum) by cshark on 7/3/2009
  • Re: Post a ASP.NET web page from desktop application

    This can be done using the WebBrowser control in the .net winforms. WebBrowser browser = new WebBrowser(); browser.Url = new Uri("http://localhost/default.aspx"); This can be done using the WebBrowser control in the .net winforms. WebBrowser objBrowser = new WebBrowser(); objBrowser .Url = new Uri("http://localhost/default.aspx");
    Posted to Free For All (Forum) by cshark on 7/3/2009
  • Re: how to apply paramatized queeries with this code

    You are adding the parameter as @QType in .net where as the parameter in sql is @Qtype. try the below line. cu.Parameters.AddWithValue("@Qtype", "A")
Page 1 of 2 (13 items) 1 2 Next >