Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
P

pmartike

@pmartike
About
Posts
37
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Sys.WebForms.PageRequestManagerParserErrorException
    P pmartike

    Hi! I have a problem with my website. I'm using UpdatePanel and i update it's content using a timer. On local server everything is fine but when i upload it on the server on every update i get this error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near '

    ASP.NET help sysadmin debugging json announcement

  • Check all - checkbox
    P pmartike

    Checkboxes has a CheckedChange event where you can verify if that checkbox is checked or not, and you check or uncheck the other checkboxes. You can use Ajax Update panel if you want to do this without refreshing your page :) Ex: protected void allTotals_CheckedChanged(object sender, EventArgs e) { if (allTotals.Checked) { customTotals1.Checked = false; customTotals2.Checked = false; customTotals3.Checked = false; customTotals4.Checked = false; .... } else { customTotals1.Checked = true; customTotals2.Checked = true; customTotals3.Checked = true; customTotals4.Checked = true; .... } }

    -------------------------------- visit: http://pmartike.deviantart.com/

    ASP.NET question

  • Redirecting to another page
    P pmartike

    but Server.Transfer() not working with true or without true... I got an error when i use Server.Transfer()

    -------------------------------- visit: http://pmartike.deviantart.com/

    ASP.NET help question com sysadmin debugging

  • Redirecting to another page
    P pmartike

    I'm sorry but i have a lot of controls on my first page... i can't transfer all those values like this :(

    -------------------------------- visit: http://pmartike.deviantart.com/

    ASP.NET help question com sysadmin debugging

  • How to Dispaly Records on runtime.
    P pmartike

    I think you have to create and populate a gridview , a datatable or a simple HTML table on Button_click event. You will find a lot of examples on the internet ;)

    -------------------------------- visit: http://pmartike.deviantart.com/

    ASP.NET java database com tutorial

  • Redirecting to another page
    P pmartike

    Hi! I have a question. How can i redirect to another page in a Button_click event. If i try with Response.Redirect("test.aspx") on test.aspx i get null values Request.Form("...") . If i try with Server.Transfer("...") i get an error: "Sys.Webforms.PageRequestManagerParserErrorException:The message recieved from the server could not be parsed. Common causes for this error are when the response is modified by calls Response.Write(),response filters,HttpModules,or server trace is enabled. Details error parsing near ' y code: protected void OkBTN_Click(object sender, ImageClickEventArgs e) { if (startDate <= endDate) Server.Transfer("test.aspx"); else { messageLbl.Text = dateError; messageLbl.Visible = true; } } I just want to redirect to my test.aspx page and get some values with Request.Form(). Plese help me :) Thank you! Regards, Marta Paniti.

    -------------------------------- visit: http://pmartike.deviantart.com/

    ASP.NET help question com sysadmin debugging

  • "Step-over", "Step-into" not working with multiple threads
    P pmartike

    It works! Thank you! :cool:

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# debugging csharp visual-studio com sysadmin

  • "Step-over", "Step-into" not working with multiple threads
    P pmartike

    I have a windows form application in which have a separate thread for a server. If i set a breakpoint somewhere inside the server code part, visual studio locks up for about 7 seconds and then if i press F10 or F11 nothing happens and the program does not stop at the next line. It behaves as if i have pressed F5 but the program does not work as expected, for example a client program cannot connect to the server anymore. If i don't set any breakpoints the program works as it should. I just want to debug the program... This problem appeared when i reinstalled Visual Studio. I also tried Service Pack 1, but it's the same.

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# debugging csharp visual-studio com sysadmin

  • Microsoft image printing problems
    P pmartike

    Does anyone know if the filename can be set programatically and the 'Save as' dialog-box suppressed when i want to print something with "Microsoft image printer"? P.S. I am working on a Cristal Report project and i am using PrintToPrinter() function. Thank you very much!

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# com question

  • Another instance of my program is already running?
    P pmartike

    Hi! I working on a Pocket PC Device application and i need help :-O How to verify if another instance of my program is already running? And if another instance is already running I want to make the one already open to get focus. Please hep me! Thank you :)

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# com help tutorial question

  • Populate a *.sdf database from a dataset
    P pmartike

    Thank you :) I'll try it..

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# question database com

  • Populate a *.sdf database from a dataset
    P pmartike

    But how can i do this?

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# question database com

  • Populate a *.sdf database from a dataset
    P pmartike

    Hi! In my program i receive a data through TCP socket and i put them into a dataset. How can i insert these values into a .sdf (pocket pc/compact framework) database. Is there a method other than using an INSERT command for every dataset row? Because using INSERT is too slow. :sigh: Thank you!

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# question database com

  • Insert
    P pmartike

    Problem solved :D

    -------------------------------- visit: http://pmartike.deviantart.com/

    Database database sql-server com tutorial question

  • Insert
    P pmartike

    Please tell me how to insert a string like this: SAMPLE'STRING into an SQL table? How escape special characters in MSSQL? Thank you.

    -------------------------------- visit: http://pmartike.deviantart.com/

    Database database sql-server com tutorial question

  • sqlceme.dll missing
    P pmartike

    problem solved :D

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# help database com question

  • sqlceme.dll missing
    P pmartike

    I am developing a program for pocket pc that uses sqlServer for the database. but when i start the program i have a message error that said that is missing sqlceme.dll. The error appears when i want to use SqlCeEngine. I can't add to Resurces and i copied it to Windows and in ProgramFiles to my application directory... but the i get the same error message... X| What can i do? Please help me ... Regards, Marta Paniti.

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# help database com question

  • Changing date format
    P pmartike

    Thanks! Problem solved :D

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# database com tutorial

  • Changing date format
    P pmartike

    thanks :-D

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# database com tutorial

  • Changing date format
    P pmartike

    this returns me a string like this: "10/46/2007" if i used for today's date.. :omg:

    -------------------------------- visit: http://pmartike.deviantart.com/

    C# database com tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups