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 dencom 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: *

  • Users: Gzk2010
  • Content: Threads
  • Order by date
  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

    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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. Gzk2010

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

    newbie - do you need to put vs2010/vs2008 in release mode to publish using Click Once. I noticed it would let me publish it without first putting in release mode. what is the correct steps to publish/Deploy? It has been 5 years since I did a winform and I used MSI in vs2003 I think I was using.
  14. Gzk2010

    Why might is be ignoring this bottom line below.

    VS2010 - Why might is be ignoring this bottom line below. It still puts in a null instead of when it is null, putting in "1417993940"); ???? sb.Append(drv["provider_npin"] != null ? drv["provider_npin"] : "1417993940"); Thanks in advance
  15. Gzk2010

    newbie - Need help finding where a text box value is coming from

    Need help finding where a text box value is coming from. I tried to find on the text box name but it does not seem anywhere in code to be assigning anything to it. Like I am looking for txtSPath.text = @"\path\etc" The path in this text box changes on clicking a row in a DataGridView control...
  16. Gzk2010

    newbie - why and how to put a project file in when using code sample

    newbie - why and how to put a project file in when using code sample I of course know how to create a project file but as I was learning LINQ the sample folder did not have a project file or solution file, just lots of files. there has to be an easier way than to create a new project and...
  17. Gzk2010

    New B- cannot seem to find out what thread is running

    Hi, when this line runs.... string whatThread = Thread.CurrentThread.ToString(); I get instead of thread3 for the value of whatThread for example, System.Threading.Thread How to really extract the thread?
  18. Gzk2010

    New B - when and why to use: string[] args in Main method

    I am new and was assuming it is cuase I am at some points sending a string into main. Thing is when I get code snippets from the net they seem to have static void Main(string[] args) and I remove the string[] args and just make it Main(){...} and their code example works fine. SO when exactly...
  19. Gzk2010

    newB -how to make a resource file .resx like a code behind file

    VS 2008 I am trying to resolve a problem in a win form app and I am more accustom to web apps. 1. In this app I googled and read about and did create a resource file, but in this app it is done in the IDE with the arrow pointing from example form1.cs to form1.resx. This code behind file...
  20. Gzk2010

    visual studio cmd - how to stop it from hanging

    I have google this but they give me exit and kill assuming i have the command prompt back. I know in linux and unix command lines very well. But for example I type into the VS cmd Test.cs(and the path to the file IS correct), instead I should have typed csc test.cs /unsafe. so now it hangs. I...

Part and Inventory Search

Back
Top