Search:

Type: Posts; User: zuperman

Page 1 of 13 1 2 3 4

Search: Search took 0.47 seconds.

  1. Replies
    5
    Views
    16,734

    Re: Load MySql Data to JavaScript Array

    parseJSON

    example of an mvc app:


    $.post("<?php echo base_url();?>posts/index", function (result) {
    var obj = $.parseJSON(result);
    for (var i in obj.records) {
    ...
  2. Replies
    10
    Views
    1,111

    Senior Penetration Tester

    http://www.linkedin.com/jobs?viewJob=&jobId=5715978&trk=eml-anet_dig-b_premjb-ttl-cn&ut=3Go0LjiZLqnlM1

    count me in...
  3. Thread: VS 2012 Ebook

    by zuperman
    Replies
    2
    Views
    758

    VS 2012 Re: VS 2012 Ebook

    i believe that "Professional Visual Studio 2012 and .NET 4.5 Programming by Wrox" is not free... so by sharing that link you breaking forum rules...
  4. Replies
    205
    Views
    25,133

    Re: The State of VBForums

    VBW: VBF, i am your father...

    I miss Karl's VBW
    http://web.archive.org/web/20001017232315/http://forums.vb-world.net/
  5. Replies
    11
    Views
    2,541

    VS 2010 Re: Page Formatting

    Certain versions of ASP.NET do not correctly recognize the Internet Explorer 10 user-agent string and must be updated.

    Update the ASP.NET browser definition files. For more info, see...
  6. VS 2012 Re: Set BGColor from VB Code Behind Based on sqlDatasources

    rowdatabound event

    http://stackoverflow.com/questions/4427848/change-cell-color-on-different-values-gridview

    Example:


    protected void GridView1_RowDataBound(object sender,...
  7. Re: que necesito para hospedar aplicacion asp.net

    I believe this is what he is asking:
  8. VS 2008 Re: Pass Exception Message to label on another page

    http://msdn.microsoft.com/en-us/library/6c3yckfw%28v=vs.100%29.aspx
  9. Replies
    7
    Views
    954

    Re: VB Expert pls help ME T_T

    good point, sir...
  10. Replies
    7
    Views
    954

    Re: VB Expert pls help ME T_T

    Just a side note:

    You could try to implement Control Arrays, like we use to do in VB6
    http://msdn.microsoft.com/en-us/library/aa289500%28v=vs.71%29.aspx

    One click event handler for all the...
  11. Replies
    1
    Views
    625

    Re: Serialization

    resolved



    Imports System.ComponentModel

    <TypeConverter(GetType(ExpandableObjectConverter))> _
    Public Class Header

    Private _companyAddress As List(Of CompanyAddress)
  12. Replies
    1
    Views
    625

    [RESOLVED] Serialization

    Hi guys

    I am trying to create a SAFT file
    http://www.oecd.org/ctp/taxadministration/guidancenote-guidancefordevelopersofbusinessandaccountingsoftwareconcerningtaxauditrequirements.htm

    I have...
  13. Replies
    1
    Views
    2,138

    Re: SSRS IIF statement

    I figured out



    =IIF(Fields!tipo.Value=0, monthname(IFF(int(right(Fields!mensalidadeId.Value,2))>12,1,int(right(Fields!mensalidadeId.Value,2)))) & " " &...
  14. Replies
    1
    Views
    2,138

    [RESOLVED] SSRS IIF statement

    =IIF(Fields!tipo.Value=0, MonthName(right(Fields!mensalidadeId.Value,2)) & " " & int(left(Fields!mensalidadeId.Value,4)),int(left(Fields!mensalidadeId.Value,4)))


    I have this condition in a...
  15. Replies
    2
    Views
    1,204

    Re: Disable Button on Submit

    solved



    <asp:Button ID="cmdSave" runat="server" Text="Teste" OnClientClick="if (!confirm('Certain??')) return;this.disabled=true;this.value = 'Please wait ...';" UseSubmitBehavior="false"/>
  16. Replies
    2
    Views
    1,204

    [RESOLVED] Disable Button on Submit

    This is working:


    cmdSave.Attributes.Add("Onclick", "this.style.visibility = 'hidden';return confirm('Confirm?')")


    When i choose the yes option the postback is made


    But i would...
  17. Replies
    1
    Views
    2,348

    Re: ExtJS JsonStore

    Solved




    var store = new Ext.data.JsonStore({
    //root: 'results',
    //autoLoad: true,
    fields: ['name'],
    proxy: {
  18. Replies
    1
    Views
    2,348

    [RESOLVED] ExtJS JsonStore

    i making my first steps with ExtJs and cant figure out whats the problem with this example...
    the grid is showing but with no records




    Ext.onReady(function () {

    var store = new...
  19. Replies
    4
    Views
    1,212

    Re: I want to Learn to Apply Business Rules

    I like the 3 tier architecture in asp.net (PL, DAL, BLL)
    http://msdn.microsoft.com/en-us/library/bb288037.aspx

    Tutorial 1: Creating a Data Access Layer

    Introduction
    Step 1: Creating a Web...
  20. Re: Please try again in 234699499 seconds

    Thx Brad... thread resolved
  21. Re: Please try again in 234699499 seconds

    i believe its working now... send you a pm... please confirm...
  22. Re: Please try again in 234699499 seconds

    It says i have no Sent Items... :sick:
  23. Replies
    32
    Views
    4,201

    Re: Welcome back....

    what the hell is a "Mendhak" ???
  24. Re: Please try again in 234699499 seconds

    it doesnt...
  25. Re: Please try again in 234699499 seconds

    almost there...



    3 years left... :afrog:
  26. Thread: Today .....

    by zuperman
    Replies
    19
    Views
    3,081

    Re: Today .....

    an ethnic Iranic people...
  27. Re: HttpContext.Current.User.Identity.Name

    Resolved:wave:
  28. Re: HttpContext.Current.User.Identity.Name

    After some research I finally found an answer that solved my problem. I removed the anonymous access in IIS and in web.config added the following:


    <authentication mode="Windows"/>
    <identity...
  29. Re: HttpContext.Current.User.Identity.Name

    by the way... What I want to do is ensure that a page can be accessed only by certain users, using the web.config... something like this


    <location path="default1.aspx">
    <system.web>...
  30. [RESOLVED] HttpContext.Current.User.Identity.Name

    I have been trying to perform security validation in a page using the credentials of the domain users ...
    However, when I try to get the value in
    HttpContext.Current.User.Identity.Name is always...
  31. Re: The request failed with HTTP status 401: Unauthorized

    Made some research... and i found a solution...

    Add a class to your web site


    Imports Microsoft.Reporting.WebForms
    Imports System.Net

    Public Class ReportServerCredentials
    Implements...
  32. Re: The request failed with HTTP status 401: Unauthorized

    I added Machine2\Network Services (local) to the report, inside SSRS Report Manager
  33. [RESOLVED] The request failed with HTTP status 401: Unauthorized

    I have the following error:
    "The request failed with HTTP status 401: Unauthorized"

    When i try to use an web site (hosted in IIS on Machine1) call a reporting service report using reportviewer...
  34. Replies
    3
    Views
    838

    Re: Webservices documentation

    thx for your comment...
    what about vendors... do they use your template... ?
  35. Re: Would somebody please be so kind to make a small program for me?

    ... and this is a great place to ask questions...



    ... confused :confused: You wanna learn how to fish? Or someone else fishes for you?

    by the way: there is a Maths Forum that can help you...
  36. Replies
    3
    Views
    838

    Webservices documentation

    I would appreciate any kind of comments on how you manage to organize all of your company's web services (buit-in or from vendors).

    1. Do you have any kind of doc template for webservices...
  37. Re: Where is a good place to get icons for my app

    take a look
    http://www.webappers.com/category/design/icons/
  38. Replies
    42
    Views
    2,733

    Re: Why soccer (football) sucks.

    soccer sucks cause its full with men legs...:sick:
  39. Replies
    4
    Views
    3,061

    Re: VSS 6.0d & VS2008/VS2010

    i havent moved to 2010, so if it works in 2008 its fine for me :thumb:

    thx for your help

    RESOLVED
  40. Replies
    4
    Views
    3,061

    [RESOLVED] VSS 6.0d & VS2008/VS2010

    Can Visual Source Safe v6 integrate with VS2008 / VS2010 IDEs?

    Thx in advance
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width