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 SkipVought 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: Veep
  • Order by date
  1. Veep

    Missing ASP.NET tab

    Try running aspnet_regiis -i from the command prompt. Vince
  2. Veep

    2003 Server & Firewall

    Got it! The file and print sharing had a subnet restriction that excluded my users. Thanks again kmkeshav. Vince
  3. Veep

    2003 Server & Firewall

    Thanks much! I'm getting closer. I can ping the box but still can't connect to the File Share. I guess I'll have to dig a little deeper. Vince
  4. Veep

    2003 Server & Firewall

    I was recently given a 2003 Server machine as a development box with the agreement that the Firewall will stay up. The problem though is that the box is unpingable on the network with the Firewall up. Not being a server administrator, I'm looking for the simplest way to allow users to access a...
  5. Veep

    Fixed pager position within Gridview?

    You should be able to do this by referencing the PageCount property. I have a grid named dg1. I added a couple of buttons and wired them up to handle the paging. Works fine: private void Button1_Click(object sender, System.EventArgs e) { // if the current page + 1 will be less than the...
  6. Veep

    How to share session variables between Web Applications.

    Not for everyone but worth a look: http://www.asp101.com/articles/jayram/sharestate/default.asp http://www.dotnetjunkies.com/WebLog/whoiskb/archive/2004/04/07/10953.aspx http://support.microsoft.com/default.aspx?scid=kb;en-us;307467 Vince
  7. Veep

    Select Case Question

    Select Case strValue Case "XXX", "YYY", "ZZZ" 'Do something Case Else 'Do something Different End Select Vince
  8. Veep

    Select Case Question

    Yes. Vince
  9. Veep

    Execute multiple queries with SqlDataReader

    Google this: SqlDataReader.NextResult() Vince
  10. Veep

    Quick site to start me off on ASP

    There are too many to mention. Google 'asp.net tutorial' or 'asp tutorial' (which ever you're leaning toward). Vince
  11. Veep

    Session.Count C#

    Boxing transforms a value type (allocated on the stack) to a reference type (allocated on the heap). Unboxing is the reverse. { int i = 100; object o = i; //Boxing int x = (int)o; //Unboxing } Vince
  12. Veep

    Returning name of button in a datagrid

    Something like: private void YourDataGrid_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { Button b = (Button)source; string myText = b.Text.ToString(); } Vince
  13. Veep

    Storing Roles in a cookie

    If you want to learn how to do this go here http://www.asp.net/downloads/default.aspx?tabindex=5 and download one of the starter kits (issue or time tracker are good examples) in VB.NET. Focus on the Global.asax, Security.vb and CustomPrincipal.vb files. Once you have a handle on the basics you...
  14. Veep

    Too True

    That last line is priceless. Vince
  15. Veep

    Totally Frustrated with ASP.Net

    Does the ASP.NET\Machine_Name account have write permissions on this folder? F:\IIS\ODUPC\foreign\Database\ Vince
  16. Veep

    seaarch engine

    [lol] Vince
  17. Veep

    suggest c# books

    Just an FYI...Troelsen's book has a third edition for 2005. http://www.amazon.com/gp/product/1590594193/qid=1138489457/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/104-7502297-5141563?n=507846&s=books&v=glance Vince
  18. Veep

    Parser error with Inherit

    We really need more info here. Are you trying to bring this project out of SourceSafe to your local box to administer? Is the Project/Solution write protected? Are there any third party controls in use that you are not referencing in your project? I've been through this one and the solution is...
  19. Veep

    Execute Queries Of Access

    http://www.asp101.com/samples/storedqueries_aspx.asp Vince
  20. Veep

    .net career advice needed

    If you can envision yourself 30 or 40 years from now as still working for this company and being the Lansa Guru and Lansa (whatever that is) will be the predominant technology of the time then go for it. Else, hang in there and get the MBA. You have no idea how many wacky doors will open up for...

Part and Inventory Search

Back
Top