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
J

jc net

@jc net
About
Posts
13
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to autorun a function in asp.net?
    J jc net

    Well there is a technique using cache object expiration where you can get a function of your own to run, search on google for: asp.net cache scheduled task and you can find working code. Good luck. /jc

    ASP.NET csharp asp-net sysadmin help tutorial

  • Best Method to Instantiate a Class
    J jc net

    I would use Method 4:) Foo NewFoo = new Foo(10); NewFoo.Select();

    goto Tech-check

    ASP.NET discussion

  • Using external app on server
    J jc net

    You will need a line like this: response.ContentType = "image/jpeg"; for the browser to offer to save as. The "image/jpeg" might be "application/pdf". Dont know for sure.

    Rules biler

    Web Development csharp asp-net sysadmin help question

  • how to open a costumized page in our webform
    J jc net

    The second argument to showModalDialog should be like this: OnClientClick="windows.showModalDialog('news.aspx, 'menubar=0, scrollbars=1, resizable=1, toolbar =0, width = 390, height = 500');" Rules biler

    Rules biler

    modified on Sunday, February 15, 2009 2:35 PM

    ASP.NET javascript database sysadmin performance help

  • change the text of a element dinamicaly
    J jc net

    Maybe you can do it like this: document.getElementById('DivtagId').innerText='New text'; or document.getElementById('DivtagId').innerHTML='New text';

    ASP.NET help question

  • Email Formatted Text in ASP.NET with c#
    J jc net

    Are you missing this line: message.IsBodyHtml = true;

    ASP.NET csharp asp-net help

  • Send Mail with UTF-8 Format
    J jc net

    Try these lines: message.SubjectEncoding = System.Text.Encoding.GetEncoding("utf-8"); message.BodyEncoding = System.Text.Encoding.GetEncoding("utf-8");

    ASP.NET csharp help tutorial question asp-net

  • User Control Problem
    J jc net

    You could try this:

    That is if you by popup mean that it pops up in a new window.

    ASP.NET hardware help tutorial question

  • append the listitems as a comma seperated string
    J jc net

    I would like to learn that, any links to where it is explained?

    ASP.NET csharp asp-net database graphics tutorial

  • append the listitems as a comma seperated string
    J jc net

    Well, if you want me to do all the work, it might help if you rated my reply ;) hint: use the mid-function

    ASP.NET csharp asp-net database graphics tutorial

  • append the listitems as a comma seperated string
    J jc net

    Dim str As String If dbconn.State ConnectionState.Open Then dbconn.Open() End If For Each item As ListItem In lstselectedemployees.Items STR = STR & "," & item.Text Next str2="insert into a (soft)values('" & STR & "')" Dim comm As New SqlCommand(str2, dbconn) Try comm.ExecuteNonQuery() Label1.ForeColor = Drawing.Color.Green Label1.Text = "Success" Catch ex As Exception Label1.Text = ex.Message End Try

    ASP.NET csharp asp-net database graphics tutorial

  • Replace cr/nl with html break tag
    J jc net

    yes, but it does not, wonder if its something about UniCode-characters

    ASP.NET csharp question html asp-net workspace

  • Replace cr/nl with html break tag
    J jc net

    Hi I have a normal string-variable in asp.net/c#, that contains cr/nl characters that I want to replace with
    tags. When viewing the string in debugmode in VS2005, I can see them in there as "\r\n". I have tried replacing with: str.Replace("\r\n","
    "); str.Replace(Environment.Newline,"
    "); but it does not work. How can I do that? Wonder if its something about UniCode-characters. Thanks.

    ASP.NET csharp question html asp-net workspace
  • Login

  • Don't have an account? Register

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