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
D

darkcalin

@darkcalin
About
Posts
56
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Why this ont rendering the Control properly
    D darkcalin

    For moment i don't have any idea. Could you please write more code here to see how can we fix that :wtf:

    ASP.NET question

  • Why this ont rendering the Control properly
    D darkcalin

    Try this: :doh: HyperLink hlink = new HyperLink(); System.IO.StringWriter sw = new System.IO.StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); hlink.ID = "ZoneLink"; hlink.Text = "TestButton"; hlink.NavigateUrl = "Default2.aspx"; hlink.RenderControl(htw); Response.Write(sw.ToString());

    ASP.NET question

  • Why this ont rendering the Control properly
    D darkcalin

    Ok then try this: LinkButton hlink = new LinkButton(); hlink.ID = "ZoneLink"; hlink.Text = "TestButton"; hlink.PostBackUrl = "Default2.aspx"; form1.Controls.Add(hlink);

    ASP.NET question

  • Why this ont rendering the Control properly
    D darkcalin

    Use this code (is in c#): Literal lit = new Literal(); lit.Text = @"<a href=""Default2.aspx"">TestButton</a>"; lit.RenderControl(htw); Response.Write(sw.ToString());

    ASP.NET question

  • opening window - acrobat file with disabled maximize button
    D darkcalin

    Try: maximize=yes or resizeable=1

    ASP.NET javascript sysadmin tools json tutorial

  • I have been trying to generate some reports to PDF file format from ASP. NET2.0 application (using itextsharp.dll)
    D darkcalin

    Try to use BinaryReader.

    ASP.NET help

  • autorefesh
    D darkcalin

    For page auto refresh use this: 120 represents 120s (2 minutes) and index.php represents the page you wish to refresh!

    ASP.NET csharp tutorial

  • validatore controll space show problem
    D darkcalin

    you can try to make a JavaScript function for validation. For extra protection you can make one other validation test on server side.

    ASP.NET help tutorial question

  • How to stop Page being cached
    D darkcalin

    Try this in page header:

    ASP.NET tutorial

  • Conersion to DateTime Data type from String
    D darkcalin

    try to use DateTime.Parse(...);

    C# help

  • of pesrSessions
    D darkcalin

    one method is to use the session Session.Add("username",myuser); darkhero

    C# tutorial

  • Files/Copy%20of%20name516.xls getting this error when opening excel file from the gridview.
    D darkcalin

    try to use HttpUtility.HtmlEncode(path); HttpUtility.HtmlDecode(path); ... if no result please write few line of code

    ASP.NET help

  • Session problem
    D darkcalin

    try this: on login page: protected void Page_Load(object sender, EventArgs e) { ......... //if the user is valid Session.Add("user", user); ....... } on other page protected void Page_Load(object sender, EventArgs e) { ....... if (Session["user"]==null) Response.Redirect("login.aspx"); ........ } on logout Session.Remove("user"); I hope that will help you.

    ASP.NET help question

  • tx text control
    D darkcalin

    I want my project to work but installing the tx textcontrol is not a solution for my problem. I want to use only the .dll to make my program to work. I don't want to install the tx textcontrol.

    C# help question

  • Update database.
    D darkcalin

    try to use sql interogation i am not sure but i think you update only one dataset not the dataBase :doh:

    C# database announcement

  • Saving from one txt file into another one problem?
    D darkcalin

    post the code if you want some help

    C# help question

  • format problem
    D darkcalin

    This is what i want!!!! Tks

    C# help

  • reading data from dataset to xml
    D darkcalin

    :laugh:

    C# xml question

  • reading data from dataset to xml
    D darkcalin

    DataSet dset = new DataSet(); dset.WriteXml(path,null); //this is the better idea

    C# xml question

  • format problem
    D darkcalin

    Hi, i have one number and i want to transform in one string but with one fixed format: EX: if i have int x=10; int y=999; my string must be string sForX="0010"; string sForY="0999"; (i want to do that without to format the string manual (with for, while or.....) )

    C# help
  • Login

  • Don't have an account? Register

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