Search:

Type: Posts; User: Magiaus

Page 1 of 13 1 2 3 4

Search: Search took 0.42 seconds.

  1. 1.0-1.2 Re: HttpWebResponse/WebResponse and MultiPart file data

    I already did the reflector all the Microsoft code for this is strictly internal/private... I wonder why they felt the need to do that...

    It would be a lot easier to find the problem if I wasn't...
  2. 1.0-1.2 HttpWebResponse/WebResponse and MultiPart file data

    Does anyone know of any built mechanic in the framework for parsing a mutlti part response?

    There has to be something somewhere because System.Web.HttpRequest obviously has the Files property...
    ...
  3. Re: [2005] Is vb a 'Object Oriented Programming Language'

    wait what _asm{}
  4. Re: [2005] Is vb a 'Object Oriented Programming Language'

    A procedure is a certian way to do a task. SO if I don't have any procedures how do I do anything?

    You guys are being pretty nit picky. All languages are based on procedures. I don't care how you...
  5. Replies
    2
    Views
    460

    Re: A newbie need some opinions

    You have to learn to crawl before you can walk.

    You also may way to try Console.WriteLine or dropping a label or textbox onto a form

    label1.Text = ValueString
    textbox1.Text = ValueString
    ...
  6. Re: [2005] Is vb a 'Object Oriented Programming Language'

    http://en.wikipedia.org/wiki/Object-oriented_programming

    To me OOP is the expretion of ideas as groups of procedures and values. (objects) The reason that AS2.0 is not OOP though is that I could...
  7. Re: [2005] Is vb a 'Object Oriented Programming Language'

    Pass the hammer....
  8. Re: [2005] Is vb a 'Object Oriented Programming Language'

    The real question here is: Is ActionScript before 3.0 OOP? The answer no. Is ActionScript 3.0? yes. Know why?
  9. Replies
    13
    Views
    7,578

    Re: where is the count property?? (treeview)

    I asked 12 Vb programmers I work with and showed them this. They had no clue and most of them started asking me questions about what option to set to do blah blah blah.

    I do that myself I set all...
  10. Replies
    13
    Views
    7,578

    Re: where is the count property?? (treeview)

    I would really be interested to hear Microsofts explination on this... I mean is to save resources or is to make VB users feel dumb?
  11. Replies
    2
    Views
    794

    Re: Hide Advanced Members

    The first match it could find in it's intel sense cache.

    Like if I typed in RegisterStartUpScript it would change it to the first Re words that it alllowed me to see because I had Hide Advanced...
  12. Replies
    2
    Views
    794

    Hide Advanced Members

    If you go into the options for VisualStudio.Net (any version) and go to Text Editor-> Basic you will see a checkbox labeled "Hide Advanced Members". It took me awhile to find and uncheck this box,...
  13. Re: problem with dynamically loaded user control's name and id being altered

    You are using your base page event wrong. You need to override OnInit not create an event. In the Protected Overrides OnInit(e as EventArgs) be certian to call MyBase.OnInit(e)...
  14. Re: problem with dynamically loaded user control's name and id being altered

    And, could you post the full code behind? Including the 2005 hidden section where your controls are declared.

    Also, have you read up on page Life Cycle?
  15. Re: problem with dynamically loaded user control's name and id being altered

    http://www.w3.org/TR/REC-CSS2/cascade.html the LAW

    This part is interesting:

    In HTML, values of an element's "style" attribute are style sheet rules. These rules have no selectors, but for the...
  16. Re: problem with dynamically loaded user control's name and id being altered

    I agree! (waiting for world to end) Using an ID in CSS is bad form. Just like using style="color:red;" is bad form. There are special case exceptions.

    Say I have the need to create a ton of table...
  17. Re: problem with dynamically loaded user control's name and id being altered

    CSS is overriden in a top down fashion. If user CSS is in the head and your CSS is at the bottom your CSS is King but if your CSS is rendered first and User second User CSS is KING.

    Have a look at...
  18. Thread: Check this out

    by Magiaus
    Replies
    9
    Views
    2,065

    Re: Check this out

    ;) that's the point of the post ;)
  19. Replies
    20
    Views
    4,603

    Re: Messagebox in ASP.NET

    I'm aware but it has to work in 2k1, 2k3, and 2k5 so....
  20. Replies
    20
    Views
    4,603

    Re: Messagebox in ASP.NET

    Here is the code I said I would post.


    Public Class JsDebugConsole
    Inherits Control

    Private Function JsEscapeString(ByVal str As String) As String
    str =...
  21. Thread: Check this out

    by Magiaus
    Replies
    9
    Views
    2,065

    Re: Check this out

    One control must call Me.Page.GetPostBackEventReference(ctl,"arg"), and MS states the place to call this is in prerender; invisible controls don't render or prerender ;)
    ...
  22. Replies
    9
    Views
    1,028

    Re: combo box????

    Here is another less complex way. I think they both suck because the display size changes, and that is bad...



    <script>
    <!--//
    function select_font(fntBox, fontName)
    ...
  23. Replies
    9
    Views
    1,028

    Re: combo box????

    The frog is correct. You need this or something like it.... I've always hated that i can't make my "select" box look as nice as the browser's...


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  24. Replies
    20
    Views
    4,603

    Re: Messagebox in ASP.NET

    This is making me think about my DebugConsole class. I don't have it here, but it:



    var win = window.open("Javascript:document.write('')");
    var dom = win.document.open();
    ...
  25. Re: problem with dynamically loaded user control's name and id being altered

    INamingContainer appends it's child controls names name to it's name in order to prevent client name resolution conflicts. if you need to ref. the client ID ctl.ClientID will include the...
  26. Thread: Check this out

    by Magiaus
    Replies
    9
    Views
    2,065

    Re: Check this out

    Good, idea.
  27. Thread: Check this out

    by Magiaus
    Replies
    9
    Views
    2,065

    Re: Check this out

    I HATE VB
    Public Class PostBackEvent
    Inherits Control
    Implements System.Web.UI.IPostBackEventHandler

    Public Sub RaisePostBackEvent(ByVal eventArgument As String)...
  28. Thread: Check this out

    by Magiaus
    Replies
    9
    Views
    2,065

    Re: Check this out

    Drop the control on a page(we say it has an id of "PBEvent"). Implement an event handler for it's event(
    protected void PBEvent_PostBackEvent(object sender, EventArgs e){/*your code*/}). Then when...
  29. Replies
    13
    Views
    859

    Re: how to use System.Web [02/03] !?!?!?

    Well, what I'm doing now, is on a site by site basis, adding a new dll to the root projects. Which means latter it will be avaliable in the shared heap project without issue.

    The draw back is that...
  30. Replies
    13
    Views
    859

    Re: how to use System.Web [02/03] !?!?!?

    yeah, I dunno if alex would post it...
  31. Replies
    13
    Views
    859

    Re: how to use System.Web [02/03] !?!?!?

    They certainly do a lot of things that slow down code, but then they do a lot of things to speed it up...

    For instance they read from a data reader: reader["colName"] which is slower than...
  32. Replies
    13
    Views
    859

    Re: how to use System.Web [02/03] !?!?!?

    I have say. Some of them don't want to hear what I say, but I have some level of say and my ideas are taken into consideration by the bosses. If I had a good solution->plan chances are it would be...
  33. Thread: AJAX postback

    by Magiaus
    Replies
    25
    Views
    1,588

    Re: AJAX postback

    You should make a page that does this task or a set of tasks and query via ajax.
    ajaxWorker.aspx?action=insert&data=chunk&orSessionDataSource=chunk&renderMsg=1
  34. Replies
    13
    Views
    859

    yep

    Yeah, that is how I see it. The worst part is that there is no good solution other than trying to slowly over time moving toward a more .net synced development process. Unfortunately, as I said in a...
  35. Replies
    13
    Views
    859

    Re: how to use System.Web [02/03] !?!?!?

    So, is this to complex to comment on or....? Really I'm looking for input ideas and so on.
  36. Thread: AJAX postback

    by Magiaus
    Replies
    25
    Views
    1,588

    Re: AJAX postback

    I could have created it by now... but, besides that generally speaking those things are more trouble than they are worth. Sorry I can't be of any real help.
  37. Thread: AJAX postback

    by Magiaus
    Replies
    25
    Views
    1,588

    Re: AJAX postback

    Why are you set on using this toolkit?
  38. Thread: AJAX postback

    by Magiaus
    Replies
    25
    Views
    1,588

    Re: AJAX postback

    Try putting the required ref info for the toolkit in the master page... other than that I don't know man...
  39. Re: Getting the recreated control's id's by viewstate

    Where is the control recreated after postback?

    In your load or init you need to loop through and create those file upload controls again... I'm not sure how to better explain, and unfortunatly I'm...
  40. Thread: AJAX postback

    by Magiaus
    Replies
    25
    Views
    1,588

    Re: AJAX postback

    Add a postback to one of the samples. Use scientific method.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width