Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. asraj16

    Data Grid

    I am using the following Code. When I click on Edit, I need to Disable a DataField. <asp:datagrid id="DataGrid1" runat="server" AutoGenerateColumns="False" DataKeyField="MSG_RULE_ID" OnItemCommand="DataGrid_ItemCommand" OnEditCommand="DataGrid_Edit" OnUpdateCommand="DataGrid_Update"...
  2. asraj16

    Data Grid

    I can do that. But when I click update button I need to enable this fields and disable other fields. Click on Edit : disable some fields Click on Update : enable those disabled fields, and disable other fields. In the same events, Calling the same page. How to do that?
  3. asraj16

    Data Grid

    Hi, I want to disable a field in a Data Grid. When I click an edit button in a Data Grid, I need to disable a field in that corresponding row. How to do that?
  4. asraj16

    ASP.NET

    It is displaying the value not text. Thanks Raj
  5. asraj16

    ASP.NET

    still I am not getting the text? I am passing this option value to a different form and I need to assing the text of <option> tag to a variable also ? Could you please anyone help me? I am really sick of this. Thanks Raj
  6. asraj16

    ASP.NET

    No I need to pass the value and text are different. I need to use only this type of dropdown. I can't use the control. Is there any way? Please I need to complete this by Today. This is very urgent. <form name="Form1" action="WebForm2.aspx" method="post"> <table> <tr> <td><select...
  7. asraj16

    ASP.NET

    Yes. I am getting the value of REPORTORSTATEMENT. This is a textbox value. But not getting the dropdown box text. How to do this. Thanks Raj
  8. asraj16

    ASP.NET

    I am retrieving the dropdown <option> tag value from differenet page. Int the page1 I have <select> code, In the page2 I am doing this. mports System Imports System.Web.UI Imports System.Web.UI.WebControls Public Class WebForm2 Inherits System.Web.UI.Page #Region " Web Form Designer...
  9. asraj16

    ASP.NET

    This Value is coming from different page. I have to retrieve a value of this text from my page. They can use only this type of dropdown. Thanks
  10. asraj16

    ASP.NET

    Hi, I am trying to get the value of <Option> tag. Here is my example. I have <select id="select1"> <option value="100">Test1</option> <option value="101">Test2</option> </select> I want to get this value using ASP.Net. I am using Request.Form("select1"), Getting only the value but not text...
  11. asraj16

    XSLT & XML

    I checked XSLT string functions. But I am getting the XML but not in the correct format.
  12. asraj16

    XSLT & XML

    I need to merge two XMLs into one XML.
  13. asraj16

    XSLT & XML

    I can able to group all the XMLs. But when I load that XML, I am getting an error because XML is not in the Correct format. XML1: <?xml version="1.0"?> <XML> <row> <ContainerId>ProdCommStmt</ContainerId> <RepositoryId>DEV_IS</RepositoryId>...
  14. asraj16

    XML & XSLT

    Hi, I am generating XML randomly and assigning this XML to a string variable. I need to merge the XMLs one by one. For Example I get the following XML in the first iteration. <?XML version="1.0"?> <test> <test1> <test2></test2> <test3></test3> </test1> </test> I am...
  15. asraj16

    XSLT & XML

    Hi, I am generating XML randomly and assigning this XML to a string variable. I need to merge the XMLs one by one. For Example I get the following XML in the first iteration. <?XML version="1.0"?> <test> <test1> <test2></test2> <test3></test3> </test1> </test> I am...
  16. asraj16

    XML in ASP.net

    Could you please send me the code? I want to parse this XML and to display the Tag values in a table and to give URL link to this values. Could you please help me? It is very urgent. Thanks
  17. asraj16

    XML in ASP.net

    Hi, I have XML which has a node and this node has multiple child nodes. For example : <Test> <test1> <test2></test2> </test1> <test3> <test4></test4> <test5></test5> </test3> <test3> <test4></test4> <test5></test5> </test3> </Test> I need to retrieve all the values of test4...
  18. asraj16

    Registering COM+ dll in VB.Net

    How can I do remote register COM Component or COM+ Component. In NT we used clireg32 command to connect from IIS to MTS components? Is there any way to do in WIN2k. How can I call a COM+ Component from a IIS Component ( Web Service ).
  19. asraj16

    Registering COM+ dll in VB.Net

    Hi, I am new to this topic and doing R & D. I created on DLL file and using WIN2K server. I created one Web Service also which calls my Mid-Tier Component. I am calling this Web service from ASP.Net page. How do I remotely register these two services ( Web service and COM Component) and how...

Part and Inventory Search

Back
Top