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

    ASP.NET

    Ah, The text is not passed in the request object. You need to use some sort of programmatic lookup or delimit the value to include the text as well "value|text" or something similiar to it, or simply make the value the same as the text. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  2. DotNetConnect

    ASP.NET

    .NET doesn't support postback to a different page. Take the runat=server out of the form tag, set the action and it should work. <form id="Form1" method="post" action="WebForm4.aspx"> WebForm4.aspx Response.Write(Request.Form["TXTRPTID"]); Jon Gallant jon[at]dotnetconnect.com...
  3. DotNetConnect

    ASP.NET

    The correct way to do this with asp.net is to use the asp:DropDownList server control. html... <asp:DropDownList ID="ddl1" Runat="server"> <asp:ListItem Value="Y"></asp:ListItem> <asp:ListItem Value="0010000"></asp:ListItem> <asp:ListItem Value="0010001"></asp:ListItem> </asp:DropDownList> in...
  4. DotNetConnect

    ASP.NET

    Post some more code, html and server side. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  5. DotNetConnect

    compile aspx page in vs.net

    Actually the other way around. Rebuild always builds. Build builds if project has changed since last build. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  6. DotNetConnect

    compile aspx page in vs.net

    Build always builds. Rebuild builds if project has changed since last build. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  7. DotNetConnect

    print all store procedure syntax

    sp_helptext Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  8. DotNetConnect

    ASP.NET

    Request.Form("TXTRPTID") should work. Check if the select is actually in the form tag and the id and name of the select is TXTRPTID. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  9. DotNetConnect

    Response.redirect arguments

    Can't open new window on server side. You'll need to use client-side code to do that. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  10. DotNetConnect

    myDataGrid_DeleteCommand not being hit

    Everything looks good, not sure. Send me the files and I'll try to run locally. Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  11. DotNetConnect

    myDataGrid_DeleteCommand not being hit

    Is autoeventwireup set to false on the aspx page? Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  12. DotNetConnect

    What is missing in live web server?

    Well, if you have it referenced, yes you need to install it. You should just be able to copy the dlls over to the live server. They are here on your local box. C:\Program Files\Common Files\Crystal Decisions\1.1\Managed Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com
  13. DotNetConnect

    myDataGrid_DeleteCommand not being hit

    Did you setup the OnDeleteCommand in the aspx page? Jon Gallant jon[at]dotnetconnect.com www.dotnetconnect.com

Part and Inventory Search

Back
Top