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 strongm 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. Gzk2010

    newbee - Opera not reading code from top to bottom, would can I do?

    newbee - Opera not reading the below code from top to bottom,would can I do? Basically I am loading in 2 separate files using the $.ajax method, but Opera is the only browser not reading it from top to bottom. I.E. url: "chaps_0_3.xml", displays out of order not first as it is the first 1...
  2. Gzk2010

    Are asp.net devlopers using css3,E4X, and Json yet?

    Is Json considered the better file format for loadind data via Jquery AJAX? I am going to use it either way, but from a cutting edge stand point, is JSON looked at a more cutting edge since it loads faster. 2. And for that matter is anyone using css3 and E4X? All these seem to require the...
  3. Gzk2010

    Is better to load 10 xml files than 1 bigger using Jquery/Ajax?

    1. I am a newbie, and from my understanding since ajax is loading in parts, you should breaks the parts down. My page has 20 little chapters with story with 20 illustrations. So correct me if I am wrong, if I just make my 1 working xml file with 20 image references and the chapter text into...
  4. Gzk2010

    how to call my cmdSave_Click button to run from my javascript in aspx

    how to call my cmdSave_Click button to run from my javascript in aspx. Ok so now it is working and now when the javascript actually function checkSave() runs and the window.confirm pops up, I want it to really save. Before I was being sure I got that far. my Jscript runtime error Microsoft...
  5. Gzk2010

    foreach (Control c in control.Controls) is choking on the "in"

    foreach (Control c in control.Controls) is choking on the "in" I have been trying to get c# code behind for an asp.net web app to simply clear text boxes and people have given me good snippits like: protected void ClearTextBoxes(Control control) { foreach (Control c in...
  6. Gzk2010

    I am trying to color text boxes in a form

    Thanks JBenson001. Clearly the line I post above was not commented out at time the exception was thrown. <%--<form id="frmBillingandShipping" method="post" runat="server">--%>
  7. Gzk2010

    I am trying to color text boxes in a form

    I am trying to color text boxes in a form and I get below error when run web page... "A page can have only one server-side Form tag. Exception Details: System.Web.HttpException: A page can have only one server-side Form tag." my code behind: foreach (Control c in...
  8. Gzk2010

    help- 2 users can log in at same time

    Ok, vs2010 web app project. Obviously, I need a web page or message that checks user's/role's permissions to directories and simply tells redirects them to a page saying they are no authorized. 1. Can someone tell me how. I am using vs2010 built in membership,role,provider system that redirects...
  9. Gzk2010

    I have 2 databases my web app connects two, do I need to combine them

    Thank you Kss444 and jbenson0001. I am going to use the sql2008 gereate script task to get tables and data and any sprocs to my apps db. Then back back up the db, ftp my .mdf to my hoster, and restore on my hosting webserver. and see what happens! Thanks
  10. Gzk2010

    newbee-The standard to tell a web users they cannot access a page?

    Here is my web.config for the SecureFtp directory if it helps <?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <authorization> <allow roles="FtpUploaders" /> <allow roles="WebMasters" /> <deny users="*" />...
  11. Gzk2010

    newbee-The standard to tell a web users they cannot access a page?

    Newbee here, I made a folder SecureFTP Then made a page FTP.aspx Using the built in WAT tool using vs2010 when a user is denied access it redirects to the login page which is wonky, Should I just create some kind of script that checks what user is in what roles and take menu hyperlinks away...
  12. Gzk2010

    I have 2 databases my web app connects two, do I need to combine them

    OK , I am trying to web deploy my web app made in VS2010 onto one of winhost.com's IIS 7 servers. I ask you and not them becuase I want to know from experienced developers how I may be able to do this. my accouint with them I only have 1 database to use sql2008. But on my local I have the...
  13. Gzk2010

    asp.net version - how to change asp.net versionin IIS 7 remote manager

    sorry, it was proprietary solution, winhost has a button to change my asp.net version to 4.0 in my portal with them since they would not give me server level permissions to IIS 7 (obviously), I asked this forum cause I thought it was an IIS questions that all asp.net devs would need to configure...
  14. Gzk2010

    asp.net version - how to change asp.net versionin IIS 7 remote manager

    asp.net version - how to change asp.net versionin IIS 7 remote manager when using web deploy to publish my web app .net 4.0 winhost.com, it publishes ok but when i type in my sites url greenzonekicker.com, I get this message: Server Error in '/' Application...
  15. Gzk2010

    ConnectionStrings setting in web.config VS 2010 not working like 2008

    I figured it out and boy do I feel like a dodo head. I copied the: <add name="GZK" connectionString="Data Source=grantorino\enterprise;Initial Catalog=GZK;Persist Security Info=True;User ID=GZK;Password=xxxxxx" providerName="System.Data.SqlClient" /> from the web.config from...
  16. Gzk2010

    ConnectionStrings setting in web.config VS 2010 not working like 2008

    Thanks, but still no dice. the line below says connectionString has no context and is underlined in red. SqlConnection myCon = new SqlConnection(ConnectionString); Any Ideas?
  17. Gzk2010

    ConnectionStrings setting in web.config VS 2010 not working like 2008

    Hi I moved my vs 2008 'still in development' web app to vs 2010. I get a Null reference error on the below code behind. I hard coded the connection string straight in the C# code behind to test it and works fine. I do have the 'using System.Web.Configuration;' up top. Two things confuse me...
  18. Gzk2010

    newbie - how to correctly exit (return) after you messagebox.show

    So it should read: MessageBox.Show(this, "You must choose at least one market!", "warning"); return; Thanks
  19. Gzk2010

    newbie - do you need to put vs2010 in release mode to publish using

    Jason, I knew that I just was not sure it even let me publish while still in debug using click once. And also why it says I am missing assembly references that are there and work in debug but I get errors when I go to release mode says I missing them.
  20. Gzk2010

    newbie - how to correctly exit (return) after you messagebox.show

    newbie - how to correctly exit (return) after you messagebox.show? I googled a tried simply return, else MessageBox.Show("You must choose at least one market!"); return; This does not stop the code from continuing on. I want it to stop after they click OK and put focus back to the...

Part and Inventory Search

Back
Top