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 SkipVought 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. mbhavani

    How to implement online exam in .NET? Suggestions

    I am developing a ASP.NET web application for conducting online exam. The exam contains some 60-150 questions.Currently, I'am storing all the answers in session and updating in the database at the end.I'am using SQL Server database. But I'am facing problems with this approach.If more than some...
  2. mbhavani

    Please Help me with Treeview control

    Sorry for the delay, No one replied to me except you, Here is my html code, <%@ Register TagPrefix=&quot;uc1&quot; TagName=&quot;LMSWelcome&quot; Src=&quot;LMSWelcome.ascx&quot; %> <%@ Register TagPrefix=&quot;uc1&quot; TagName=&quot;LMSTopBanner&quot; Src=&quot;LMSTopBanner.ascx&quot; %> <%@...
  3. mbhavani

    Please Help me with Treeview control

    I had a treeiew control and a usercontrol on my web page.The &quot;Expand Level&quot; property of that treeview control is set to '0'.When I run the page ,If I select any node at level 1 or higher in the treeview, and I click on the userControl, then I'am getting this error...
  4. mbhavani

    DataGrid both numeric and Next/Prev paging

    I have a datagrid which currently supports only default Next Previous paging. But I nedd to include both numeric paging as well as Next/Prev paging as Google Can anybody please post me sample code? bye,
  5. mbhavani

    Passing a variable through OnClick

    For that Button You can keep one Button column in your DataGrid. The click of button in that column will raise Datagrids ItemCommand event.In that event you can capture the particular row containing the button clicked, so that you can get all other column data for that row. I think this sui...
  6. mbhavani

    Dynamic control ?

    The problem is that for the ControlToValidate property of validator, you need to give a string which is the ID of your textbox control. The code should be as Dim text As TextBox Dim required As RequiredFieldValidator text = New TextBox() text.ID = &quot;t1&quot...
  7. mbhavani

    Passing a variable through OnClick

    I think I can help you If you post the code of your datagrid definition and the function you are calling on button-click.
  8. mbhavani

    Loop DropDownList..?

    You can keep 5 DropDownLists,DataTables,TextFields, and Value fields in 4 different arraylists. Within a loop you need to typecast the appropriately while assigning Dim alLists As New ArrayList() al.Add(dropList1) al.Add(dropList22) Dim alDataTab As New ArrayList()...
  9. mbhavani

    Setting DataValueField for dropdownlist item

    I think you need this: Imports System.Web.UI.WebControls
  10. mbhavani

    Regular Expression Validator

    I would like you to know one thing which I came to know recently. All Validators except RegularExpression validator will supress any kind of validation if the data is null. Even I had the same doubt
  11. mbhavani

    Programmatically selecting a given value for the list

    If items are already added to the dropdown list then the following code works fine for me . It will select the item in list if it is already added. Try dropTitle.Items.FindByValue(rs.Fields.Item(&quot;CustomerID&quot;).Value).Selected = True Catch End Try Or You can find the item by text...

Part and Inventory Search

Back
Top