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 Mike Lewis 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. collegian

    Wrong event getting fired on pressing enter

    Thanks for the reply! I got it figured :)
  2. 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...
  3. 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#"...
  4. collegian

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

    Does that mean I need to create a checkbox for every column of the data returned?
  5. 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...
  6. collegian

    How to hide an empty column of a repeater?

    I figured out that I can use a function to show or hide values and it worked!
  7. collegian

    How to hide an empty column of a repeater?

    Thanks for the reply.The issue is that that not all the values in the column are null,a few are null and a few are not,so I can't use display:none directly. When I use a loop as I've done above it always takes the last value and hides or displays the column according to it.I need something...
  8. 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...
  9. collegian

    Label does not exist in the current context

    Yes,the class name is the same on aspx and code behind but I am not using any namespaces.
  10. collegian

    Label does not exist in the current context

    Yes,I deleted the page and created it again but even that doesn't work! Is it because of the fact that there exists some reference of the deleted duplicate files somewhere in the project?
  11. collegian

    Label does not exist in the current context

    Is there any special method to view these files? I am using VS-2010 professional and I do not see the aspx.designer.cs files by default,I just have the .aspx and .aspx.cs files visible.
  12. collegian

    Label does not exist in the current context

    I get a compile time error when I build the website.What does a missing field from designer.cs file mean? I am sorry, I did not understand it.
  13. collegian

    Label does not exist in the current context

    Here is the front end code: <div id="weather"> <img src="sunny.jpg" alt="sunny" height="40px" width="40px"/> <h3>Weather</h3> <p><i>(5 minute Averages)</i></p> <table> <tr> <td><b><font size="2px">Current Time</font></b></td> <td><asp:Label...
  14. 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...
  15. collegian

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

    Thanks for the replies.I was able to figure it out.
  16. collegian

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

    This means that whenever I publish the website I need to go to web.config and change the path each time?
  17. collegian

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

    I am not sure if I understand you. If I hard code the absolute path then the website won't work when I publish it to some other location. I thought ~ symbol represented the root directory of the project so anything inside it will be represented by ~/... but this doesn't work in the current scenario.
  18. collegian

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

    I tried to specify the xsl file in the web.config using a key,value pair but it doesn't seem to work. I specified the following key-value pair under the <appSettings> tag: <add key="PUB2ENDNOTE_XSL" value="pub2endnote.xsl"/> Both web.config and the .xsl files are in the same directory. In the...
  19. collegian

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

    Yes,I know that.I just wanted to test if my code is working or not. How do I get around this?Should I create a key in web.config and then access it? I tried doing that for the .xsl file but it doesn't work.It just looks at location C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0.
  20. collegian

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

    I am getting FileNotFound Exception:Could not find file 'C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0\pub2endnote.xsl'.I have my XSL file in the same directory as my .aspx.cs file. I am not sure why it is looking up this directory? Also,the text file obtained is having html...

Part and Inventory Search

Back
Top