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
R

rull

@rull
About
Posts
11
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Capturing Event
    R rull

    The Problem is that I cannot use only eventhandler delegate. I am using Infragistics controls and For example i cannot add same function to Button.Click and Infragistics.Win.UltraWinEditors.UltraTextEditor.EditorButtonClick because it has type EditorButtonEventHandler. Maybe there is any way to handle such event using reflection?

    C# tutorial

  • Capturing Event
    R rull

    Is there is any way to handle events of different types by one function. For example I want to handle events of EventHandler type and my custom events with single function that have different number of parameters or have no parameters.

    C# tutorial

  • ReturnURL problem
    R rull

    Hi all. I have a such problem with ReturnURl parameter when using custom authentication in web site. System.Web.Security.FormsAuthentication.RedirectFromLoginPage(txtUsername.Text, false); returns me not to same page from which authentication was requested. The problem is in get parameters. I have page, for example: default.aspx?cnt=1&cat=34 . So ReturnUrl looks like : LoginPage.aspx?ReturnUrl=/default.aspx?cnt=1&cat=34 and &cat=34 is not a value of ReturnUrl - it is separated parameter in this string - so it redirect to default.aspx?cnt=1 How i cat solve this problem? Thanks Rull.

    ASP.NET security help tutorial question

  • save datagrid
    R rull

    In your code you always write testnodes.xml file getting info from nodes.xml on comboBox1_SelectedIndexChanged. So you read data from one file, select, and than write to another file?(button1_Click).

    C# xml question

  • save datagrid
    R rull

    Sorry DataBind is for Asp.Net datagrid DataSet ds = new DataSet(); ds.ReadXml(@"c:\testnodes.xml"); dataGrid1.SetDataBinding(ds, "school"); You can find it here

    C# xml question

  • save datagrid
    R rull

    Call dataGrid1.DataBind() function after setting DataSource property.

    C# xml question

  • SMS feature in asp.net website
    R rull

    You can find and use some WebService.

    ASP.NET csharp asp-net help

  • TextArea Scrollbar
    R rull

    Is it possible to change textarea scrollbar width? Ruslan.

    Web Development question

  • add Xml in C#
    R rull

    Example from MSDN: using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.LoadXml("" + "Pride And Prejudice" + ""); XmlNode root = doc.DocumentElement; //Create a new node. XmlElement elem = doc.CreateElement("price"); elem.InnerText="19.95"; //Add the node to the document. root.AppendChild(elem); Console.WriteLine("Display the modified XML..."); doc.Save(Console.Out); } }

    C# question csharp xml

  • Does anyone know how to use web user controls and placeholders?
    R rull

    You can write: WebUserControl1 ctrl = (WebUserControl1)LoadControl("WebUserControl1.ascx"); PlaceHolder1.Controls.Add(ctrl); or WebUserControl1 ctrl = (WebUserControl1)LoadControl("WebUserControl1.ascx"); Controls.Add(ctrl);

    ASP.NET tutorial csharp asp-net winforms question

  • Email Existing Check
    R rull

    How I Can check existence of email on server using an Application or standart Windows programs? Ruslan

    IT & Infrastructure sysadmin 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