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
R

rameshdontagani

@rameshdontagani
About
Posts
49
Topics
32
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • the item 'mysharepoinit site url' cannot be found. rsitemnotfound
    R rameshdontagani

    Hi All, While configuring the report datasource in my sharepoint 2007 report libary,I am getting the below error the item 'mysharepoinit site url' cannot be found. rsitemnotfound. While deploying the reports to sharepoint report library from report data server also I am getting the above error. Please help me out this.

    SharePoint help sharepoint sysadmin

  • Authorize.net paymenet gate way
    R rameshdontagani

    hi all, i am using authyorize.net(sim) payment gateway for my shopping cart.previously i used arvic payment gateway.I am new to this . my requirement is after completing the payment successfull i want to redirect the page from authorize.net to my site with transaction results. how can i do this in c#?

    ASP.NET csharp question

  • multilanguage website in sharepoint(moss)
    R rameshdontagani

    hi all, i am creating a site in multilanguages using moss.. in the variation labels ..i have created the two lables...one is English(source language) and other one is chinese... what ever the content i am writing in the english(nothing but source)..it is publishing in chinese..up to this it is okay... after some time i wil edit the data in chinese and here again i dont want any updations from the English..means i need the chinese data should be remains same if we enter the data in english version also... for this what can i do?

    Web Development sharepoint question announcement

  • runnning the command prompt from asp.net app
    R rameshdontagani

    hi..how can i pass the command to commandprompt and how can i execute those programatically

    ASP.NET question csharp asp-net

  • runnning the command prompt from asp.net app
    R rameshdontagani

    hi i want to run the commandprompt form asp.net webapp for the button click event..there i want to run a command ..i wil get this command from asp.net app............how can i do this ?

    ASP.NET question csharp asp-net

  • treeview control in asp.net
    R rameshdontagani

    hi all i am displaying the data in treeview control dynamically from the database..... i have the parent node and child nodes and i want to edit those parent node and child nodes..now i want to place the add button and edit button for that tree control beside of the each node or below of that nodes,,,,,,how can i do this in asp.net?

    ASP.NET question csharp asp-net database data-structures

  • hyperlinkculumn in the grid
    R rameshdontagani

    hi i am creating the hyperlink column like this ........ HyperLinkColumn hlpField = new HyperLinkColumn(); hlpField.DataTextField = "test"; hlpField.HeaderText = "test"; datagrid.Columns.Add(hlpField); and now i want to give the url to this hyperlink field in the itemdatabound event...... how can i do this

    ASP.NET css question

  • generating the hypelink dynamically in the grid
    R rameshdontagani

    please tell me idea.......it is an urgent requirement

    ASP.NET csharp css asp-net question

  • generating the hypelink dynamically in the grid
    R rameshdontagani

    hi, i want to generate the hyperlink dynamically and i want to bind this to datagrid in asp.net how can i do this

    ASP.NET csharp css asp-net question

  • sql query
    R rameshdontagani

    hi, i have three fields in the database table p1 p2 rank 10% 20% 3 21% 40% 2 now i am passing the input as 15%...this 15% is related to 3rd rank.. so i need the o/p rank as 3.. if the p1 and p2 datatypes are varchar..then how we can we write the query for that one tgo get the rank as 3. Ramesh

    Database database

  • textbox in datagrid..making the textbox readonly dynamically
    R rameshdontagani

    hi all, i have a textbox in datagrid.... i want to make this textbox readonly =true; for that i wrote the coding like this in the item databound event TextBox txtAP=(TextBox)datagrid.FindControl("txtH1a"); txtAP.Readonly=True; but i am getting the error that Object reference not set to an instance of an object. Ram

    ASP.NET help

  • selecting the items from dynamically generated radion button list controls
    R rameshdontagani

    hi , i am getting the id of selected item of last radio button list..but i need all ids of the three radio button lists selected item.

    ASP.NET question csharp asp-net database

  • selecting the items from dynamically generated radion button list controls
    R rameshdontagani

    hi, i am creating the radio button list controls dynamically.in the pageload event [CODE] for(i=0;i<3;i++) { RadioButtonList rbCAction=new RadioButtonList(); rbCAction.ID="rbCAction"+r; rbCAction.Font.Size=10; rbCAction.Font.Name="Verdana"; rbCAction.DataSource=dataSetList; rbCAction.DataTextField="answer"; rbCAction.DataValueField="id"; rbCAction.DataBind(); Panel1.Controls.Add(rbCAction); } [/CODE] along with this 3 radion button lists ..one button is there named "save". after clicking on the save button..wat are the values i have seleted from the radio button lists these values should be insetred in to the database..this is my requirement. for the button click event iw rote the code like this [CODE] for(k=0;k<3;k++) { rbCAction.ID="rbCAction1"+k; string str=rbCAction.SelectedValue; [/CODE] but in selected value it is showing that ...only last radio button list seleted item showing..for evey one . how can i insert these three radio button lists selected values in to databse using asp.net?

    ASP.NET question csharp asp-net database

  • datagrid with checkboxes
    R rameshdontagani

    Use the GridView.RowDataBound Event and for each new generated row check the seats value (e.Rows.Cells[0].Text) and change the checkbox visibility accordingly. e.Rows.Cells[1].FindControl(checkbox)....

    ASP.NET csharp asp-net database help question

  • datagrid with checkboxes
    R rameshdontagani

    i have a datagrid ..in that two columns are there ....seats.and checkboxes i am getting the seats value from the database... my problem is if the seats value is more tha 0 ..then only the checkbox should be visible... if the value is lessthan or equal to 0 ..then the checkbox should be invisible how can i do this in asp.net

    ASP.NET csharp asp-net database help question

  • arrays with for loop
    R rameshdontagani

    hi, i have a dagrid..in that checkboxes are there with ids of 1,2,3; i am passing the ids to that grid are 2,1..accordig to my logic those checkeboxes(1,2) has to be checked =true for ids 1,2 it is working if i pass the 3,2 then only 2nd checkbox is checking if i pass the 3...then no checkbox is checked... last checkbox is not checking for the last id.. i wrote the code like this in the databound event strScheduleIds=strScheduleId.Split(',');(here the values i am getting which i passed from the otherpage .) for(i=0;i<strScheduleIds.Length;i++) { foreach(DataGridItem dg in dglist.Items) { if(dg.Cells[9].Text.ToString()==strScheduleIds[i].ToString() ) { ((CheckBox)dg.FindControl("chk1")).Checked=true; } } }

    ASP.NET css

  • comparing two arrays
    R rameshdontagani

    hi, it is not giving any error, to get the same values from the two arrays ..i wrote the logic like this, first array first element checks with all the second array elemnts..if it find any matches ..it returns the matched value..like second element with all the elements of second array. but to get the elemenet which is in first array and which is not second array.. i wrote like this, first array element checks with the all the elements in the second array..if he does not found any matches it returns the unmatched values ....this is wrong na..becasue this first elemnt unmacthedvalues may be equal to the second element in the first array how can i write the logic for this

    C# data-structures

  • comparing two arrays
    R rameshdontagani

    hi, i have two arrays.. first arraylist consists of 1,2,4,6,8; second arraylist consists of 2,6,9,8 i got the commoon items using the following code..it is working fine for(int i=0;i<strOldItems.Length;i++) { strTest[i]=strOldItems[i]; for(int j=0;j<strNewItems.Length;j++) { if(strTest[i]==strNewItems[j]) { if(strCommon.Length>0) { strCommon=strCommon+","+ strTest[i]; //Response.Write(strTest[i]+","); } else { strCommon=strTest[i]; } } but i need the items which is in first array and which is not in second array..for that i wrote the following code..but it is not working.. for(int i=0;i<strOldItems.Length;i++) { strTest[i]=strOldItems[i]; for(int j=0;j<strNewItems.Length;j++) { if(strTest[i]!=strNewItems[j]) { if(strReject.Length>0) { strReject=strReject+","+ strTest[i]; //Response.Write(strTest[i]+","); } else { strReject=strTest[i]; } } } }

    C# data-structures

  • [Message Deleted]
    R rameshdontagani

    [Message Deleted]

    C#

  • comparing two arrays
    R rameshdontagani

    hi, i have two array lists.. first arraylist consists of 1,2,4,6,8; second arraylist consists of 2,6,9,8 now i want to display the matched values from two arraylists and i need the values of second arraylist which are not in first arraylist.. how can i do this in c#

    C# csharp data-structures 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