Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. who are the "fake newbies" with 10 years experience???
  2. the problem is your stored procedure. You need to pass something to identify the record you want to update like the primary key or something and use that as the WHERE clause instead.
  3. what exactly is your question?
  4. ok, does this always happen?in the project folder are the files there and just not showing in VBE?If so, backup the files and uninstall VBE,.Net, and IIS (in that order) and install them in the reverse order.Can you see the project files now?
  5. I don't see any prblems with your code.Have you tried running the SELECT statement right in Access to see if it selects the data?
  6. assuming there is only 1 <link> on your page function loadCss(){ var css = document.getElementsByTagName('link')[0]; css.href = 'yourstyle.css';}
  7. aspnetguy

    Hosting

    have you checked this thread yet? http://w3schools.invisionzone.com/index.php?showtopic=3770
  8. well when I used to use ASP sometimes when a record was updated and I did a response.redirect back to a viewing page the data would not be updated (it was in DB but not showing on screen), in my case a simple Refresh showed the new values. Obviously that is not the case for you.You said that you checked the database and the data is indeed updated?Can you post the code that displays the data fromt he DB?
  9. yes you need a server side language like PHP to process the submitted form.
  10. hit Refresh...it sounds like the browser is caching your pages.look into some no-cache techniques.
  11. I am not a fan to the blue and yellow navigation. Are those the organizations colors?If not, the yellow is a bit intense...I would choose something more muted.
  12. That is the way I see it...and the code does too :)that query is completely pointless and does nothing...probably the source of your troubles...
  13. Good find Caligo...that is a definate Bookmark!
  14. after you are done learning HTML in college it is almost gaurenteed you will have been taugh some bad habits. I would recommend using/learning XHTML...it is cleaner and better formed.
  15. Won't this stream the audio in the users audio plugin?You could use <bgsound src="foo.mp3"/> although this has been depreciated in XHTML
  16. can you show me a screen shot of the projects Solution Explorer (CTRL+ALT+L) (please fully expand it)?
  17. Yes I believe the Database explorer is the same as Server Explorer.When you say you only get source code you mean the form design files are not there???Are you developing this for the web or for a desktop app?If you want to develop for Web you will need Visual web Developer Express.To clarify the Express editions are free stripped down versions of VS. VB express allows you to only create VB desktop apps, and C# express - c#desktop apps. VWD allows you to create only web apps in either C# or VB
  18. okay, your problem is you are adding it on a button click. So next button click the page is refreshed and the control is lost.Dydnamic controls are hard to manage and should be avoided unless 100% absolutely necessary.My suggestion to you is to place the control on the form and use style="display:none" to hide it.then on your button click use this.RegisterStartupScript("key","<script>document.getElementById('elemId').style.display = 'block';"); to show it then on the next button click it will be availbel to you.
  19. what about is not working? Is it not updating hte database? Is it inserting a blank value? Do you get error messages?Please be as specific as possible.
  20. conText does tabbed documents. I don't know of any editor that searches a whole folder but I think conText searchs all open documents...I may be wrong...justsomeguy would know, he uses conText a lot.
  21. View > Server Explorer or CTRL + ALT + S
  22. Yes, whether you are using .Net to write desktop programs or web programs(asp.net) you use either VB or C#. Your code will look very similar for either situation.ASP.Net in a sense isn't a language...it is a framework or structure to allow you to write C# or VB code.
  23. please post all the related code. It is most likely you are adding the control outside an if statment like thisif(!ISPostBack){}if this is the case you are overwritting the submitted value before it can be entered into your database.I'll help you once I can take a look at your code
  24. ASP.Net is written in VB or C#, you have a choice.
  25. I don't suggest you push this....you are not allowed to talk about hacking and you are not allowed to ask about were you can talk or learn about it. This is part of the forum rules, if oyu don't like it, too bad...nobody is forcing you to stay here. If you wish to stay, please respect the forum rules. This is the last thing that will be said about this issue.
×
×
  • Create New...