Jump to content
Xtreme .Net Talk

smriti

Avatar/Signature
  • Posts

    56
  • Joined

  • Last visited

Everything posted by smriti

  1. hi all, i am using access database and when i load the grid the last blank row is also appearing. how to make it invisible. Thanks.
  2. Hi all, I am having a datagrid in my windows form application. when i select one of the row in the datagrid then another datagrid is to be displayed below that row. That is a datagrid is to be displayed with in a datagrid(between the rows of the first datagrid) Is it possible to display data between rows of a datagrid? If so please guide me with u r suggestions or any samples. Thanks.
  3. hi, i got it. just use view states in place of shared variables. Thanks, smriti
  4. hi all, I want to display number of rows in grid in each page like "starting row to end row of total rows" i am using paging in the grid. I manged to do so by using shared variables for staring row , end row nd total rows and incrimented and decrimented correspondingly when navigated to next page. But if i took two browsers then as i used shared variables i am getting problems. Can any one give me a suggestion to do this. Thanks
  5. Hello Friends, I have one problem. I have one datagrid. In the footer section of the datagrid I added textboxes for inserting a new row into the datagrid.In my footer section I put 4 textboxes and one user control. The user control consists of a textbox and a button. Whenever I click the button a calender is displayed. If I select a date that date is bound to the textbox. Upto now is fine.But my problem is whenver I insert a record.In the insert routine I find the controls by using e.item.findcontrol("Controlname"). All 4 textboxes are found. But the usercontrol is not found. How can I find the usercontrol. If any one have the solution,Please let me know Thanks in advance
  6. hi friends, i had an asp.net datagrid with edit and delete buttons as itemtemplates when i click edit button i am going to edit form and after editing i am returning to the page with datagrid. i want the row from which i clicked edit to be highlighted. i tried using itemdatabound but i couldn't get. ny ideas or suggestions? Thanks
  7. Dear all, i got it its very easy but i displayed the message in seperate aspx page. if u want the way then here it is http://www.developer.com/net/asp/article.php/1594521 Thanks
  8. could u please explain me in somewhat detail or can u provide me any sample i am not able to get u r point
  9. No this is not working i gave 10 seconds sleep time , label is not displaying but its redirecting to next page
  10. i have to display the message and redirect to another form after clicking the button. how will it be possible to display the text message i have to maintain some delay between displaying the message and redirecting to next form
  11. i want to display it as text not as message box
  12. hi i want to display a message like added successfully in the same form after clicking a button and redirect to other form. how this message gets displayed . plz help
  13. hi , i am using datagrid template column with imageButton in it i am deleting the record when the imageButton in the datagrid row is clicked i want to display the confirm message box before deleting. i am using the following code in OnDeleteCommand event Public Sub data_Delete(ByVal sender As System.Object, ByVal e As DataGridCommandEventArgs) CType(e.Item.FindControl("imgBtnDelete"), ImageButton).Attributes.Add("onclick", "return confirm('Are u sure to delete this record');") 'some code to perform delete bindDataGrid() End Sub but this is working for the second time i.e when the button is clicked second time how to keep this CType(e.Item.FindControl("imgBtnDelete"), ImageButton).Attributes.Add("onclick", "return confirm('Are u sure to delete this record');") in page_load. ny one help plz :confused: Thanks
  14. Thanks a lot i got it
  15. hi I am displaying confirm message like btn.Attributes.Add("onclick", "return confirm('" + strmess + "');") in asp.net I want to perform delete operation if user gives ok on the confirm message. How to capture the event when user clicks ok on the message box. Thanks
  16. how to create menu controls in ASP.NET(with out using third party dlls) Thanks
  17. Hi, How can we get the error numbers of the exceptions. I had to trap that numbers and match them against a text file. Text file should consist of error numbers and the description. when the trapped error number matches with the one in the text file. The description in the text file should be displayed as exception. can any one help me to do this ? Thanks.
  18. hi is it possible to call the function written in aspx.vb file from javascript written in aspx page. Thanks
  19. I populated datagrid by binding it to dataset i am able to edit i mean delete , change the values of the fields present in datagrid, i don't want this to happen even though this doesnot reflect the data base. if any one know kindly reply soon Thanks
  20. at cse_56@yahoo.co.in
  21. Hey I got it myself If any one want it mail to me :)
  22. hi My application consists of .aspx,.aspx.vb and some class files Is there any process so that i can do step by step debugging through the code in ASP.NET if so please reply me Thanks
  23. I had build two queries in to a macro in msaccess i want to call this macro from vb.net application and run it so that the two queries get executed. can any one help?
×
×
  • Create New...