CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: mansoor_aziz

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Re: Why doesnt Page Output Caching work with Routing?

    Got this working finally

    added parameter validateIntegratedModeConfiguration="false" in webconfig file
    in <system.webServer> block, and it worked.

    <system.webServer>
    <validation...
  2. Why doesnt Page Output Caching work with Routing?

    I am trying to use output caching on my .net pages but it is not working when I use Route handlers to redirect request to actual page, but it works when I call the page directly.

    also one more...
  3. Replies
    1
    Views
    2,467

    C# writing XML through XmlTextWriter

    Hi,

    I am reading XML from database using

    ExecuteXMLReader()

    and writing it to a file using

    XmlTextWriter(filepath,encoding)
  4. Replies
    3
    Views
    837

    Re: Spliting Huge XML file

    Thanks for your reply,
    Boudino I think that would work, let me try that.

    Thanks.
  5. Replies
    3
    Views
    837

    Spliting Huge XML file

    Hi,

    C# VS 2005:

    I have a XML file of size more than 1 GB, I have to process it(perform some valiodations and XSLT transform) If I do it in a normal way it will eat up too much memmory, I want...
  6. Replies
    1
    Views
    2,295

    c# and XML explicit

    Hi,
    I have a stored procedure in sql server 2005 generating XML thor XML Explicit.
    I want to catch this in my C# program and save it as an actual xml document.

    is ther anyway to grab this...
  7. Replies
    6
    Views
    45,724

    Re: 'System.OutOfMemoryException'

    thats the reason i used 10 MB block..there is less chance of missing event like you explained

    block 1: "...&"
    block 2: "lt;..."

    most of files are under 10 MB
  8. Replies
    7
    Views
    10,545

    Re: Stream Reader/Writer Encoding

    finnally got the soultion, binary reader works yepeeee..:D
    thanks all who helped.

    here is the code, I think the way i used to read from stream and write is crap, if any one knows better then...
  9. Replies
    7
    Views
    10,545

    Re: Stream Reader/Writer Encoding

    riscutiavlad:
    well i havent tried binary reader/writer yet, i will try it thanks alot for advise.

    torrud :
    yes i can get encoding for files downloaded through http rewuest as below
    Encoding...
  10. Replies
    7
    Views
    10,545

    Re: Stream Reader/Writer Encoding

    Any one who can help????

    any guru there ?
  11. Replies
    7
    Views
    10,545

    Stream Reader/Writer Encoding

    Hello all,

    I am having a problem while setting encoding for stream/writer reader using c#.

    I have to download text files using ftp and http requets.

    The problem is that i dont know the...
  12. Replies
    6
    Views
    45,724

    Re: 'System.OutOfMemoryException'

    got the solution. it might help some one

    so here is the code


    StreamReader readerFile = new StreamReader(sReadResultPath, System.Text.Encoding.UTF8);

    ...
  13. Replies
    6
    Views
    45,724

    Re: 'System.OutOfMemoryException'

    i have tried readline() method but it was v slow,

    lets try read block method too.
  14. Replies
    6
    Views
    45,724

    [RESOLVED] 'System.OutOfMemoryException'

    Hi All,

    i am getting 'System.OutOfMemoryException' while executing code below

    StreamReader readerFile = new StreamReader(sReadResultPath, System.Text.Encoding.UTF8);
    stringFile=...
  15. Replies
    1
    Views
    900

    Re: Asp.net/vb/sql Insert

    i can't see ur are executing ur query any where in this code,
    try this

    datacomm.ExecuteNonQuery()

    after this line

    datacomm=New OleDbCommand(sqlinsert, dataconn)

    it should work..
  16. Replies
    0
    Views
    2,028

    __dopostback in asp.net vs2005

    Hellow all,

    I have followinf javascript function called on gridview item click, it opens a new window, i want it to be post back when new window is closed so that data could be refereshed, but...
  17. Replies
    1
    Views
    667

    Re: debuging windows service

    problem resolved service was not comming with service name, instead it was comming with the name of project.
  18. Replies
    1
    Views
    667

    debuging windows service

    Hi All,
    I have made a windows service, then i made its setup and intalled it successfuly, service is showing in services.

    but when i m debuging it, i m goin to debug->attache to process, then a...
  19. Replies
    2
    Views
    8,485

    Re: WebClient Download Timeout

    i am also having same problem

    any help? can we set timout mannually ?

    WebClient client;
    client.DownloadFile(uri, FileNameWithPath);
  20. How to windows/network user login name

    do any buddy know how to get windows/network user login name in asp.net, with vb.net....!!???
  21. Replies
    2
    Views
    580

    Re: Changing DataSource

    Problem resolved :)
    it was my mistake i was not maping all tables one by one....!! was just maping database...!!!
  22. Replies
    2
    Views
    580

    Re: Changing DataSource

    i have made the TEST database offline now its show error message that TEST data base is offline........i could not understand why it is going for TEST database.....when i have updated datasource...
  23. Replies
    2
    Views
    580

    Changing DataSource

    HI,
    I am having a problem and its very urgent,
    i have made a report in test database it worked fine, now i wana run it on live database, i have changes its datasource and updated it as well, but...
  24. Re: how to check if linked server exists ???

    gr8 (y) thanks alot SHUJA.
  25. Re: how to check if linked server exists ???

    its
    Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec 17 2002 14:22:05 Copyright (c) 1988-2003 Microsoft Corporation Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 2)
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured