Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

bhavnvyas

@bhavnvyas
About
Posts
57
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • The property or field has not been initialized.
    B bhavnvyas

    Hi I am getting this error when I am trying to call sharepoint 2010 client object model in my silverlight application.**Error:The property or field has not been initialized. It has not been requested or the request has not been executed. It may need to be explicitly requested.
    **using (SP.ClientContext objSite = new SP.ClientContext("http://Sharepoint:80/"))
    {

                SP.CamlQuery objCaml = new SP.CamlQuery();
                objCaml.ViewXml = @"";
                SP.Web objWeb = objSite.Web;
                SP.List list = objWeb.Lists.GetByTitle("BackgroundImages");
                listItems = list.GetItems(objCaml);
                objSite.Load(objWeb);
                objSite.Load(list);
                objSite.Load(listItems);
                objSite.ExecuteQueryAsync(Succeeded, Failed);
            }
    

    Please help****

    WPF sharepoint help

  • Silverlight identification from server side
    B bhavnvyas

    Hi, How to identify/find that silverlight is installed in client browser from server side. Regards Bhavin

    WPF sysadmin tutorial

  • Disable Delete button
    B bhavnvyas

    I found this code in MSDN site but its not working in my case.any other solution.

    SharePoint sharepoint com xml tutorial question

  • Disable Delete button
    B bhavnvyas

    From List

    SharePoint sharepoint com xml tutorial question

  • Disable Delete button
    B bhavnvyas

    How to disable delete link button from ribbon in display form in sharepoint site. I already tried below code but its not working in my site.

    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="RemoveRibbonButton"
    Location="CommandUI.Ribbon">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.ListForm.Display.Manage.DeleteItem" />
    </CommandUIDefinitions>
    </CommandUIExtension>
    </CustomAction>
    </Elements>

    SharePoint sharepoint com xml tutorial question

  • Bind datagridview from listdata in sharepoint 2010
    B bhavnvyas

    Hi all I want to bind list data to datagridview in my win form and I am using Client Obj Model. Please Help....

    SharePoint sharepoint help

  • Join in MYSQL
    B bhavnvyas

    sample join table query in MY SQL Plz help

    Database database mysql help

  • Error.
    B bhavnvyas

    thnx for help.... but i already solved this issue.....

    Database help tutorial

  • Error.
    B bhavnvyas

    Hi all i am getting this error in my web applicacion.can any one help me how to resolve this error.plz distributed transaction completed.either enlist this session in new transection or the null transaction thnx in advance...

    Database help tutorial

  • Updatepanel not working in createuser wizard
    B bhavnvyas

    thnx for rep........:rose: in my application i have user detail fields like user name password city state and country in this i hav to maintain password text even after page load. my page loades when i select Country India from India state dropdown list will bind and same for city so now INDIA>MAHARASTRA>PUNE but due to this my password field will be erased.:confused:

    ASP.NET csharp asp-net help announcement

  • Updatepanel not working in createuser wizard
    B bhavnvyas

    i hav three dropdown list country,state and city with out update panel my password will erased and if i use update panel my state ddl is not filter by country i already googled but i my organization all other sites are blocked only asp.net and cp is runnin.........:mad: :( plz help..........:confused:

    ASP.NET csharp asp-net help announcement

  • How to send SMS from asp.net application
    B bhavnvyas

    Hi I have to send SMS from my asp.net site from SMS received from user side. For ex user send Code:1458689 user receive Code:1458689 User Name: ABC Address : XYZ etc...

    ASP.NET csharp asp-net tutorial

  • Querystring issue
    B bhavnvyas

    thnx again in my web site i want to use some windows form features so for tht i am inclunding one page which is basically windows form for tht i am using webgui visual studio express which run my application in web. so i want to pass querystring from my web application page to this windows app page which is basically .wgx page

    ASP.NET help

  • Querystring issue
    B bhavnvyas

    thnx for reply but WebGUI itself is a my tool. leave it neways but wat if i am developing somt web gui application in windows app thn how to fetch querystring data...plz help....

    ASP.NET help

  • Querystring issue
    B bhavnvyas

    hi all, i know this is not a windows app forum but i want to pass querystring from my web page and fetch it into my windows application. I am using some 3rd party tool web GUI for my windows app to run it as web application. Plz help.....:confused:

    ASP.NET help

  • Disable a hyperlink
    B bhavnvyas

    plz send me your code so it'll be more clear. Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET csharp asp-net help

  • Disable a hyperlink
    B bhavnvyas

    asp:TemplateField
    <ItemTemplate>

                                                        <asp:LinkButton ID="lbEdit" runat="server" Text="Edit" OnClick="lbEdit\_Click"></asp:LinkButton>
                                                    </ItemTemplate>
                                                </asp:TemplateField>
    

    i am redirecting from aspx only.

    LinkButton btn = sender as LinkButton;
    GridViewRow gvr = btn.NamingContainer as GridViewRow;
    string docNo = gvr.Cells[0].Text;

    so this way i am fetching row datakey

    ASP.NET csharp asp-net help

  • Disable a hyperlink
    B bhavnvyas

    i think it will work in hyperlink columns 2 but why dont u use this code

    <Columns>
    asp:TemplateColumn
    <ItemTemplate>
    <asp:LinkButton ID="lnkEdit" runat="server">Edit</asp:LinkButton>
    <asp:LinkButton ID="lnkView" runat="server">View</asp:LinkButton>
    </ItemTemplate>
    </asp:TemplateColumn>
    </Columns>

    use itemtemplate for hyperlinks

    ASP.NET csharp asp-net help

  • Disable a hyperlink
    B bhavnvyas

    protected void gvPaymentDetails_RowDataBound(object sender, GridViewRowEventArgs e)
    {
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
    GridViewRow gvr = e.Row;

            if (gvr.Cells\[5\].Text != "&nbsp;" || gvr.Cells\[6\].Text != "&nbsp;" || gvr.Cells\[8\].Text != "0")
            {
                ((LinkButton)(e.Row.FindControl("lbEdit"))).Enabled = false;
                ((LinkButton)(e.Row.FindControl("lbEntry"))).Enabled = True;
            }
            else
            {
             ((LinkButton)(e.Row.FindControl("lbEdit"))).Enabled = True;
             ((LinkButton)(e.Row.FindControl("lbEntry"))).Enabled =False;
    
            }
            
    
           
    
        }
    }
    

    I am using this code in my appliction for edit and add button.

    ASP.NET csharp asp-net help

  • Session Object..
    B bhavnvyas

    go through this... http://www.codeproject.com/KB/aspnet/ExploringSession.aspxa>]

    ASP.NET sysadmin question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups