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.
rameshdontagani
Posts
-
the item 'mysharepoinit site url' cannot be found. rsitemnotfound -
Authorize.net paymenet gate wayhi 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#?
-
multilanguage website in sharepoint(moss)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?
-
runnning the command prompt from asp.net apphi..how can i pass the command to commandprompt and how can i execute those programatically
-
runnning the command prompt from asp.net app -
treeview control in asp.nethi 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?
-
hyperlinkculumn in the gridhi 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
-
generating the hypelink dynamically in the gridplease tell me idea.......it is an urgent requirement
-
generating the hypelink dynamically in the gridhi, i want to generate the hyperlink dynamically and i want to bind this to datagrid in asp.net how can i do this
-
sql queryhi, 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
-
textbox in datagrid..making the textbox readonly dynamicallyhi 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
-
selecting the items from dynamically generated radion button list controlshi , 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.
-
selecting the items from dynamically generated radion button list controlshi, 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?
-
datagrid with checkboxesUse 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)....
-
datagrid with checkboxesi 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
-
arrays with for loophi, 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; } } }
-
comparing two arrayshi, 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
-
comparing two arrayshi, 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]; } } } }
-
[Message Deleted][Message Deleted]
-
comparing two arrayshi, 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#