User Profile

Collapse

Profile Sidebar

Collapse
baburk
baburk
Last Activity: Oct 25 '08, 04:23 AM
Joined: Oct 17 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • baburk
    replied to Check all the controls loaded
    I want to check controls like textbox, button , gridview and etc......
    See more | Go to post

    Leave a comment:


  • baburk
    started a topic Check all the controls loaded

    Check all the controls loaded

    Hi,

    anybody tell me.

    How to find particular control loaded completely.
    See more | Go to post

  • baburk
    started a topic Date Between Problem

    Date Between Problem

    Hi all,

    I want to get result for a praricular ID if all days are present.

    But I am getting result if any of the day present in between the date


    select StarRate, Date from vw_BasicSearch where date BETWEEN CAST('2008-06-03' AS DATETIME)
    AND CAST('2008-06-05' AS DATETIME)
    AND StarRate = 5
    group by StarRate, Date


    Result.

    StarRate Date...
    See more | Go to post

  • baburk
    started a topic Specific Reasons To Denormalize

    Specific Reasons To Denormalize

    Hi all,

    Is there is any Specific Reasons To Denormalize.

    Any example?.

    Thanks
    See more | Go to post

  • Differnece between SelectStatement in View and StoredProcedure

    Hi All,

    We all are creating Select statement both in View and StoredProcedure

    In view it virtually links to tables.

    What is the difference.

    Thanks in advance
    See more | Go to post

  • Calling javascript function in masterpage file using RegisterClientScript problem

    Hi all,

    when I call the javascript method from code behind file of the same page it works fine.



    Code:
    ScriptManager.RegisterClientScriptBlock(this, Page.GetType(), "Scroll", "ScrollToPosition();", true);
    But when i put the JavaScript method in the masterpage, there the problem occurs.



    When I press the button1,

    It...
    See more | Go to post
    Last edited by acoder; May 27 '08, 11:18 AM. Reason: Added code tags

  • baburk
    started a topic How to get EventID
    in .NET

    How to get EventID

    Hi all,

    I am writing eventlog.

    In EventLog class having WriteEntry() to write eventlog into the Event Logs file.

    It contains some parameter.

    How to get the eventID, category, rawData for an exception

    eventID
    Type: System..::.Int3 2

    The application-specific identifier for the event.

    category
    Type: System..::.Int1 6
    ...
    See more | Go to post

  • Generic.EventLogManager' does not contain a definition for 'Installers'

    Hi all,

    Iam getting this errormessage when i called this function.

    This function is for to log the error message.

    Generic.EventLo gManager' does not contain a definition for 'Installers' D:\TravelSoln\A pp_Code\Generic \EventLog.cs

    Iam having this namespace
    Code:
    using System.Configuration.Install;
    using System.Diagnostics;
    using System.ComponentModel;
    ...
    See more | Go to post
    Last edited by Plater; May 21 '08, 07:51 PM. Reason: code tags

  • How to refresh asp:Content after certain period of time

    Hi,

    How to refresh only a particular asp:Content for certain period of time.

    How can i?
    Code:
     
    <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
      
    </asp:Content>
    See more | Go to post
    Last edited by DrBunchman; May 20 '08, 07:20 AM. Reason: Added code tags - note the # button

  • How to set stylesheet padding-right pixel value from javascript

    Hi all,

    I want to set the pixel value 10px from javascript.

    This style in a file stylesheet.css.

    Javascript in a file script.js


    p,h2,h3
    {
    padding-right: 10px;
    }

    Thanks in advance
    See more | Go to post

  • baburk
    replied to Get Url Change
    But I wants, it should be called suddenly when the user gives another url....
    See more | Go to post

    Leave a comment:


  • baburk
    replied to Call javascript form C# problem
    in .NET
    Hi Frinavale,

    I have put like this in C#

    ScriptManager.R egisterClientSc riptBlock(this, Page.GetType(), "Scroll", "ScrollToPositi on();", true);

    and the Script is

    <script language = "javascript " type = "text/javascript">
    function ScrollToPositio n()
    {
    window.scrollTo (10,10);
    }

    </script>...
    See more | Go to post

    Leave a comment:


  • baburk
    replied to Get Url Change
    I want this for, if the user enters different url i wants to end the session....
    See more | Go to post

    Leave a comment:


  • baburk
    started a topic Get Url Change

    Get Url Change

    Hi,

    I had wrote this script to get the changed URL.

    I called this in <body onunload = "GetUrl();" >

    The problem is that it gives the old url but not the changed url.

    ie the function url is http://localhost:4241/WorkedOut/Default.aspx
    when i changed to www.google.com it gives http://localhost:4241/WorkedOut/Default.aspx but not www.google.com

    [CODE=javascript]...
    See more | Go to post
    Last edited by acoder; May 12 '08, 12:01 PM. Reason: Added code tags

  • baburk
    started a topic Sub Query and join Difference

    Sub Query and join Difference

    hi,

    In these two Query, for join we have to use DISTINCT but for SubQuery no need to use distinct.



    SELECT DISTINCT PM.PropertyID, PM.PropertyName FROM PropertyMaster PM
    JOIN PropertyManager PMgr ON PM.PropertyID = PMgr.PropertyID
    JOIN CompanyRegistra tionMaster CRM ON PMgr.CompanyID = CRM.CompanyID
    WHERE Master = @CompanyID

    SELECT PropertyName, PropertyID FROM PropertyMaster...
    See more | Go to post

  • baburk
    replied to Call javascript form C# problem
    in .NET
    No I didn't get any error on registering thescript in the page.

    When I set PartialPageRend ering = false it works fine.

    But when i set it to PartialPageRend ering = true it did't call the script and didn't throw any error.

    Through breakpoint i chencked it called correctly.

    I heard that when i set PartialPageRend ering = false it renders only partial page.
    So the script didn't load in...
    See more | Go to post

    Leave a comment:


  • baburk
    started a topic Call javascript form C# problem
    in .NET

    Call javascript form C# problem

    Hi,

    When I set EnablePartialRe ndering = false it works.

    But I want EnablePartialRe ndering = true.

    How to over come this.

    Page.ClientScri pt.RegisterClie ntScriptBlock(P age.GetType(), "Move", "scrollToXY(10, 10);", true);

    Thanks in advance
    See more | Go to post

  • baburk
    started a topic Concatenate two tables

    Concatenate two tables

    hi all,

    I am having two tables with same number of rows and datatype like this,

    Table1

    Item

    1
    2
    3
    4
    5


    Table2

    Item

    1
    2
    3
    4
    5

    I want to join this two table like this

    Item1 Item2
    1 1
    2 2
    3 3
    4 4...
    See more | Go to post

  • baburk
    started a topic Get Controls Inside Content Template
    in .NET

    Get Controls Inside Content Template

    If control is in page I can able to get like this


    foreach (Control c in Page.Controls)
    {
    if (c.GetType() is TextBox)
    {

    }
    }


    But my controls are in ContentTemplate

    Help me how to find it
    See more | Go to post

  • baburk
    started a topic Call javascript form C# problem
    in .NET

    Call javascript form C# problem

    Hi,

    Because of having ajax ScriptManager EnablePartialRe ndering = "true"

    the java script doesn't call

    public void FocusControl(Co ntrol ctrl)
    {
    System.Text.Str ingBuilder sb = new System.Text.Str ingBuilder();
    sb.Append("<scr ipt language='javas cript'>");
    sb.Append("wind ow.scrollTo(0,0 );");
    sb.Append("</script>");...
    See more | Go to post
No activity results to display
Show More
Working...