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. gcastillo

    SELECTED in dropdownlist inside a itemtemplate ina datagrid

    Hello and thanx. No, I don't need to select alwas "NOM", but the data stored in the database is the "selected" in the dropdownlist. If I have "BAM", then "BAM" should be the selected in the ddl when the page is loaded... Thank you!
  2. gcastillo

    SELECTED in dropdownlist inside a itemtemplate ina datagrid

    Hello. I have a page that restores data from a previously saved "draft". In the page I have several datagrids with textboxes and labels. In one datagrid I have a dropdownlist in the follow form: <asp:TemplateColumn HeaderText="Official Reference"> <ItemTemplate> <asp:dropdownlist...
  3. gcastillo

    Posting Form To Another Page

    Hello. I have the same question, and I'm using ver 1.1 (I think.. I'm sure it's not 2)... I wanto to send an user and status to another page, using POST. I add the "action=MyPage.aspx" in the HTML part of the code, but when I compile my "action" dissapears. There must be a way to transfer data...
  4. gcastillo

    Submitting form - Master Pages

    Hello. I have sort of same question... I wanto to send an user and status to another page, using POST. I add the "action=MyPage.aspx" in the HTML part of the code, but when I compile my "action" dissapears. There must be a way to transfer data between pages without session vars. How can I do that?
  5. gcastillo

    I can´t add more than a row to a table

    And one final question! When I add a row, with the text boxes, and I write something in the textboxes, when I add a new row, in the page reload my text is gone!. I think that the structure of the table is kept in the session var, but how can I keep the text wrote in the textboxes?. Thank you!
  6. gcastillo

    I can´t add more than a row to a table

    Yes, ca8msm. I got it now... I finally could use the code that stsuing writes in the thread855-1083548. It works very fine, but not with a table with headers. Because the deadline for my project I'm using two tables, one with the headers and the other kept in a session var. I'll take a deep...
  7. gcastillo

    I can´t add more than a row to a table

    Thanx,ca8msm and yes, I think that something like that is happening, however, I tought that on every page load the status of my table would be preserved. I mean, if my page is on the browser with one row (the default), and I click the "Add new row" button, the page loads and the table now has...
  8. gcastillo

    I can´t add more than a row to a table

    Hello. I have a HTML table, and in a row a table(from web forms). I have 2 cells, with a textbox each. I have a link button that needs to add a new row with the two cells and the two textboxes every time it's clicked. It works as expected the first time, but in subsequents clicks it only keeps...
  9. gcastillo

    Dropdownlist in the bottom sends me to the top

    Thanx, BB, but I'm not using ver 2.0, I'm stucked in the previous version. I'm going to look after that "smart navigation", thank you for pointing me in that direction. Any more ideas, people? I can't believe that there's not something like "backToPosition" or something in the component!. Thanx
  10. gcastillo

    Dropdownlist in the bottom sends me to the top

    Hello. I have two or three dropdownlists at the bottom of my form, with autopostback enabled. When I select something, the page reloads on the top of the page. How can I return the page to the bottom after I select something in my dropdl?
  11. gcastillo

    Some questions about ASP-ASP.NET

    I think you're rigth, Sirius. The efficiency is bigger in the compiled part... Anyway, the line with <%=Now().ToString%> is exactly what I was looking for.. I just need to know if there's a way to do the same with any variable qith a value assigned in the code behind... Just for the knowledge...
  12. gcastillo

    Some questions about ASP-ASP.NET

    Thanx, ecannizzo. The response.write works, but you can't specify where the output will be (or, if somebody knows how to do that, please share). And the other option works only if the myVar is declared and the value assigned in the HTML, not in the code behind... =/
  13. gcastillo

    Some questions about ASP-ASP.NET

    Nop =( ... This error happens: "Parser Error Message: Server tags cannot contain <% ... %> constructs" ..... maybe everything needs to be assigned to an element or component in the page?...
  14. gcastillo

    Some questions about ASP-ASP.NET

    Thanx, DotNetGnat, but that's code behind (in the .vb file). My question would be: If I have in my code a var: myVar = system.datetime.now, or myVar = 23, or myVar="this is only a text", how could I display in the .aspx file, in the HTML interfase, the value for myVar? In ASP I can use...
  15. gcastillo

    Some questions about ASP-ASP.NET

    Hello. I've been developing with ASP and VBS for a while. Now, with ASP.NET I don't know how can I display a value from a simple function. i.e: in ASP I use <%=Date()%> to display the date from the server. How can I do that in .NET? I know I can use the code behind and have the text on a label...
  16. gcastillo

    DSN on a mapped drive not working

    I have two PCs running Windows 2k, one with databases (Access) and the other as a web server. I made a mapping of the pc with databases as F: on the webserver, and create a DSN on my web server using a database in F:. My code tries to acces the DSN, but an error occurs. If I move the database to...
  17. gcastillo

    Help_searching multiple keywords within one field

    I had the same original problem. My approach was to add a field &quot;keyWords&quot; where I put several words and phrases that are related to the product (services, in my case).ie: car,blue,car blue,blue car I then used a query with LIKE and searched in the ServiceName and keyWord fields, and...
  18. gcastillo

    Maybe it is simple, but I need a combined search (ASP)

    You need to use a query like this: SELECT tblNegocio.nombreNegocio, tblGiro.giroNegocio FROM tblGiro INNER JOIN tblNegocio ON tblGiro.claveGiro = tblNegocio.claveGiro; In this example, the tblnegocio has the data for the negocio, and the key of the Giro. In the table tblGiro are the...
  19. gcastillo

    Dynamic news and content

    Hello I want to start a web site for my city, but the first big problem is to get the info that changes every day. It needs to be automatic, 'cause I don't have a big staff to update it every day at 00:00 hrs. Where can I find the info (news, stock news, exchange rate, etc) open to the public? I...

Part and Inventory Search

Back
Top