Search

You searched for the word(s): userid:69394

Matching Posts

  • Re: Assemblies

    Go to google.com and type in "What is a .NET Assembly" You will get many pages explaining what it is. majorcats
    Posted to Getting Started (Forum) by MajorCats on 12/10/2009
  • Re: on IIS server for asp.net application with c#

    If you are in Visual Studio and you run your site from within Visual Studio...and you havent changed any default options, then it is running a version of IIS which is built in to visual studio. If you wanted to actually host the application for other people to use and get to via a URL, you would need IIS...but for testing purposes, the version of IIS built in to Visual Studio is the default option in Visual Studio
    Posted to Getting Started (Forum) by MajorCats on 10/1/2009
  • Re: Persisting data in a class

    What i usually do is save the class to a session variable and then in the page_load assign the session variable back to the new instance of the class. Makes it easier than doing each class value individually. I would be interested to hear if someone has a better way as well....
    Posted to Getting Started (Forum) by MajorCats on 8/25/2009
  • Re: Stop the next view from coming up if not valid ?

    have you debugged through it? Does it hit your statement to set it to View2 or not? How are you defining View2? You say it contines to "the next page" but i see no code in your example for that.
    Posted to Getting Started (Forum) by MajorCats on 8/18/2009
  • Re: moving html data to array

    The first thing you want to do is isolate the data as best as you can, right? You can do a regular expression to pull out the table cells....like this: Dim myExp As New Regex("<td\b[^>]*>(.*?)</td>") Dim myMatches As MatchCollection myMatches = MyExp.Matches(strHTML) 'where strHTML is your html string This will return something like: match(0).Value "<td Width=1501 height=1251><Input type=checkbox name=Sel id=Sel value='338305'></td>"
    Posted to Getting Started (Forum) by MajorCats on 8/18/2009
  • Re: stream question

    http://ondotnet.com/pub/a/dotnet/2003/04/14/streams.html
    Posted to Getting Started (Forum) by MajorCats on 7/29/2009
  • Re: contents of a novel stored in a database

    There are several ways i can think of to do something like that. What do you want it to do? In your repeater control, create a link for each word instead of just displaying each word....so instead of displaying say ''paperback' as a word, you would have a link such as <a href='lookup.aspx?id=1234'>paperback</a>. You could add a style to each link so it doesnt have usual underline, etc. You would then create another page called lookup and get the id of the word from
    Posted to Getting Started (Forum) by MajorCats on 5/4/2009
  • Re: Select Row/Kolums in a Grid?

    I'm not sure this is what you are looking for, but do a google search for "html image maps". Maybe that will help you....
    Posted to Getting Started (Forum) by MajorCats on 4/21/2009
  • Re: Best Idea For Transferring Data Between Different Servers Automatically (webservices?)

    Does any manipulation of the data occur before you update to oracle? If not, you might check with your DBA's to see if there is some automatic process within the database itself that they can setup. I am not a DBA but if i remember correctly, SQL server has DTA jobs that can be configured that might be able to do something like that so I assume Oracle has similar functionality. You might not even need to code anything at all. Otherwise, i agree with the other poster. A windows executable I think
    Posted to Getting Started (Forum) by MajorCats on 4/21/2009
  • Re: Boy I hope this is too simple!!

    Create a new folder under inetpub\wwwroot called mynewsite and put your pages there If you need it to be an application, then from IIS right click on that folder and click the create button and create a new application
    Posted to Getting Started (Forum) by MajorCats on 4/16/2009
Page 1 of 46 (452 items) 1 2 3 4 5 Next > ... Last »