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 dencom 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: *

  • Users: collegian
  • Content: Threads
  • Order by date
  1. collegian

    Wrong event getting fired on pressing enter

    Hello All, I have two search text boxes and two corresponding buttons on my web page.One of the textboxes is a default textbox coming from the .master page and the other one is local to the page.Now,when I enter some text into the local textbox and press enter, the event of the master page...
  2. collegian

    Button onclick event not firing

    Hello, I have a web page which has both asp.net controls as well as AJAX controls.I am facing a weird issue when I introduce some AJAX controls the button onClick event stops firing.Can anyone suggest what might be the reason for this? Here is my code: <%@ Page Title="" Language="C#"...
  3. collegian

    How to add a checkbox to every row when using &lt;asp:xml&gt;?

    Hello All, I am using the <asp:xml> control for displaying data obtained from a table.I want to know is it possible to add checkbox to each and every row of data fetched from the table? I can't use a datalist or a repeater since I am exporting data to end-note and I am using a XSLT for that...
  4. collegian

    How to hide an empty column of a repeater?

    Hello All, I have a repeater control bound to a data source.The data source has some empty values within it.I want to hide the repeater column when the value from the datasource is null or empty.I searched on google and tried to use a placeholder control to do the same.However,I can't think of...
  5. collegian

    Label does not exist in the current context

    Hello All, I am facing a weird issue.I have a label on the front end but when I try to use it on the code-behind and run my code I obtain an error: Label does not exist in the current context! The label is shown in intellisense and was working earlier.My team mate had created a back up of the...
  6. collegian

    How to write a stylized XML file to a text file?

    Hello All, I am using the <asp:xml> tag on my front end and I am supplying the Document Content(data source) as well as the transform source(XSL file) on the back end.Now, I want to write the transformed result to a text file. How can I do it? Any suggestions will be greatly appreciated. Thanks.
  7. collegian

    ASP.NET data export to EndNote?

    Hello All, Is there any way to export data from ASP.NET web page (or SQL Server database table) to an EndNote document? Any suggestions will be greatly appreciated. Thanks.
  8. collegian

    How to make div length elastic based on the length of text?

    Hello, I have some content in div tags.I want to make the div elastic based on the length of the text so that the text doesn't spill out of the div tag. I am attaching a file in which I want the width of the div "wrapper" to be dynamic based on length of the content in the content placeholder...
  9. collegian

    How to make div length elastic based on the length of text?

    Hello, I have some content in div tags.I want to make the div elastic based on the length of the text so that the text doesn't spill out of the div tag. I am attaching a file in which I want the width of the div "wrapper" to be dynamic based on length of the content in the content placeholder...
  10. collegian

    Styling with master page results in bad rendering

    Hello, I am applying master page to my .aspx pages but the pages are not being rendered well. However, when I do not use the master page and apply css to style the page it renders well. Can anyone give some suggestion as to what might be causing the issue with master page? Also,is there any...
  11. collegian

    Using CSS for ASP.NET menu

    Hello All, I am trying to apply CSS to the ASP.NET menu.I have a horizontal menu with each heading having menu items within it.I want to display the selected menu heading and all the menu items within it with a different color.I am not sure how does the selected item change when using menu in...
  12. collegian

    Binding one datalist to multiple tables?

    Hello All, I just wanted to know if there is any way in which I can bind one datalist to multiple tables? I can use multiple datalists but I think that would look ugly.I need to implement a site wide search functionality.Any suggestions will be appreciated. Thanks.
  13. collegian

    Using animation to fade in and out each row of data fetched from db?

    Hello All, I want to have a fade in fade out animation on each row of the data fetched from the database.I was wondering what will be the best method to do it? I can have the data stored in a datalist but that will always render the whole data and will not do a row by row fade in fade out...
  14. collegian

    Can a modal pop up be populated with data from a URL?

    Hello All, I have a Collapsible Panel Extender inside a datalist.I have a hyperlink inside the panel within the datalist. I want to have a modal popup on clicking the hyperlink inside the panel and I want the modal pop up to be populated with the data from the navigate URL property of the...
  15. collegian

    Issue with URL binding using eval in a datalist.

    Hello All, I am using Eval inside a datalist to populate a hyperlink within the datalist with a navigateURL value and I am using it as follows: <asp:HyperLink ID="HyperLink_FullStory" runat="server" Text="Full Story" NavigateUrl='<%#Eval("LinkAddress")%>'></asp:HyperLink> The issue I am...
  16. collegian

    Can HTML be inserted into the database?

    Hello All, Is there any way I can insert HTML text into a database table? I want to preserve the HTML formatting of the text.I tried to use SQL insert statement but that doesn't seem to work.I am using SQL Server 2000. Thanks.
  17. collegian

    How to update a table while doing an insertion using dynamic data?

    Hello All, I am new to dynamic data and .NET 3.5. I do not see any code behind files in the project. I was just wondering if there is any way to do some other functionality once I click on the Insert link button? Suppose,I need to update another table once insert is clicked, based on the values...
  18. collegian

    How to dynamically set the column width of a table in a datalist?

    Hello All, I just wanted to know if there is any way to dynamically set the width of a column inside a table within a datalist based on the length of the text fetched from the database.I am inserting my code.In the code below I want the width of collapsible panel to be dynamically set based on...
  19. collegian

    Number of DataListItem objects in the collection being fetched incorre

    Hello All, I am binding a datalist to some table 0 of a dataset from the database. When I check the number of rows in the dataset table 0 it's coming as 129 but when I check the count of the datalist items(using Datalist_Name.Items.Count) inside the datalist item created event I am getting a...

Part and Inventory Search

Back
Top