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
S

shecool

@shecool
About
Posts
10
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How can i change namespace prefix in wcf envelope [modified]
    S shecool

    The generated envelope is like this <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Header> <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">urn:IClientDetails/GetClient</Action> </s:Header> <s:Body> <GetClient> <clientId>dfad</Id> <callType>dfad</value> </GetClient> </s:Body> </s:Envelope> Where as i want <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> soap:Header <Action soap:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">urn:IClientDetails/GetClient</Action> </soap:Header> soap:Body <GetClientRequest> <Id>3</Id> <value>343</value> </GetClientRequest> </soap:Body> </soap:Envelope>

    modified on Wednesday, May 13, 2009 2:47 AM

    WCF and WF wcf csharp com xml question

  • sqlconnection
    S shecool

    Use \\ComputerName\SQL2005ServerName insteed of localhost

    C# help database question sql-server sysadmin

  • web technology for windows/linux
    S shecool

    No.. DotNet doesn't provide fully platform independent solution. If you want platform independent solution, please go for Java, PHP.

    Web Development csharp linux tutorial

  • How to understand Debug Diagnostic's generated Report
    S shecool

    Hi, Can anybody please tell me.......... How to Understand the report generated by the Debug Diagnostic tool for checking Memory leakage or performance analysis? I have successfully create 3-4 full user dumps. now how should i analyze the generated report? Please Reply ASAP. Thanks,

    Web Development performance debugging tutorial question

  • Performance Analyzer for Dotnet Desktop Appliction
    S shecool

    Hi, My client wants to check the quality and performance of the "Desktop" application, from the Microsoft professional. He will buy the application only when Microsoft gives the Green flag to that. Is there any tool from which i can test the quality and performance of the application. For you kind information, i am already using FxCop tool. But unluckily this tool won't check the performance of the application. Please suggest me. Regards,

    Visual Studio csharp performance

  • Viewstate Serialization Issue [modified]
    S shecool

    I agreed. But storing object into the viewstate is also the process of serialization. If i removed the [Serializable] attribute from TestClass the application won't work, because to store the object, class must have that attribute. Than why that process won't understand [NonSerialized()] attribute? Is viewstate serialization is different form of process? Thanks,

    ASP.NET design security xml json help

  • Custom Exception Handling
    S shecool

    Hello, I want a custom class "MyException" inherited from Exception class which will be used exactly same as the Exception class i.e. "MyException" must handle all the exceptions thrown by the try block. like public TestException { try { int i=0,j=0; j=25/i; } catch(MyException ex) { MessageBox.Show(ex.Message); } } The catch block must be respond the same way as if i use catch(Exception ex) which can handle all the exception. Thanks

    .NET (Core and Framework)

  • Viewstate Serialization Issue [modified]
    S shecool

    Hi, I have a class marked as [Serializable] named "TestClass". When i store the object of this class Why the [NonSerialized()] attribute fname successfully serialized and deserialized back when i create the object from viewstate? Following is the full code of my test. using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Runtime.Serialization; using System.Xml.Serialization; public partial class viewstate : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { TestClass obj = new TestClass(); obj.name = "Dreams"; obj.fname = "Lonely"; ViewState["MyDT"] = obj; } protected void Button1_Click(object sender, EventArgs e) { TestClass obj = (TestClass)ViewState["MyDT"]; Response.Write("id=" + obj.j.ToString() + " Name=" + obj.name.ToString() + " Age=" + obj.age.ToString() + " fname="+ obj.fname +""); } } [Serializable] public class TestClass { public int j = 1; public string name = "Dreams"; public string age = "28"; [NonSerialized()] public string fname = "Planet"; } Thanks

    ASP.NET design security xml json help

  • Add Event handlers Issue at Page Load
    S shecool

    then why Button1 click event fire without attaching again?

    hello

    Article Writing help question

  • Add Event handlers Issue at Page Load
    S shecool

    I have following code snippet at page load event. protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Button1.Attributes.Add("onclick", "alert('hello')"); Button2.Click += new EventHandler(Button2_Click); } } button1 display the alert message when we click on that. But when i click on button2, it doesn't fire Button2_Click event. Why? Althouh if i comment "if (!IsPostBack)" line, the code working fine.

    hello

    Article Writing help question
  • Login

  • Don't have an account? Register

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