Search results for query: *

  1. S

    Control object refrence

    obj_Control = DirectCast(LoadControl("App_Controls/Login.ascx"), UserControl) I need an object refrence to LoadControl function...any ideas? (It's in a shared sub)
  2. S

    Group comments

    So real quick, when you do stuff like: Function test() 'stuff here end function The function test is collapseable... I keep changelogs like this: '0.0.1 'test 'test 'test I want to collapse it at 0.0.1, any ideas? like tricks or anything, but I still want to see 0.0.1 :)
  3. S

    2.0 Control issues

    Default.aspx <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head...
  4. S

    VB or C#?

    So which language would be better to program in ASP.NET in? I've been using VB, but most examples are in C# is there a reason for this? Is it more powerful or something?
  5. S

    IIS 5.0 Post limit

    There seems to be a 64kb limit on IIS 5.0 post requests. Any ideas?
  6. S

    Return Table Field Names

    So pretty simple, I want to get all of the field names in the database in the most efficient way... any ideas? Like SQL statement wise? I guess I could do a select * from table WHERE 0=1 then use a for next for each item in DBRS.FIELDS to get it... any better ways?
  7. S

    Controls, App_Code, _Default issues :(

    So I have a control in Default.aspx I have a .vb file in my App_Code folder. I wan tto edit the contorl from the code in the App_Code folder. Object browser says it's called: _Default.panel_main But that doesn't work :(
Back
Top