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
E

Edwin Syarief

@Edwin Syarief
About
Posts
35
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Generate Not Repeated Random Integer Values
    E Edwin Syarief

    Hi everyone :) Is anybody can help me, I have a problem here , how to generate not repeated random integer values ? Thanx in advance

    Regard, Edwin :)

    C# help tutorial question lounge

  • Bypass character in textbox
    E Edwin Syarief

    Sorry Guys, It's working 100%

    Regard, Edwin :)

    C# tutorial

  • Bypass character in textbox
    E Edwin Syarief

    Thanx a lot -Bobo God Bless U

    Regard, Edwin :)

    C# tutorial

  • Bypass character in textbox
    E Edwin Syarief

    Hi, How to bypass character in TextBox, so when we press alphabet keyboard key will bypass it. But when we press number TextBox will confirm this input. Thanx in advanced

    Regard, Edwin :)

    C# tutorial

  • how to create an aspx page dynamically in one asp.net web apllication
    E Edwin Syarief

    CMS (Content Management System). In ASP.NET 2.0 U will find it in ToolBox Web Part. Or other way U can Save every user settings in database. But I suggest U to use web parts. U can find it at msdn how to use it. Of course U can use xml.

    Regard, Edwin :)

    ASP.NET csharp asp-net help tutorial

  • how to create an aspx page dynamically in one asp.net web apllication
    E Edwin Syarief

    Ohh... I see. santoshkumarB, u should use CMS. Have U ever heard about CMS? This CMS will solve your problems.:)

    Regard, Edwin :)

    ASP.NET csharp asp-net help tutorial

  • how to create an aspx page dynamically in one asp.net web apllication
    E Edwin Syarief

    Hi santoshkumarB, So, what is your point? Please more specific.

    Regard, Edwin :)

    ASP.NET csharp asp-net help tutorial

  • Adding codebehind variable as text for textarea
    E Edwin Syarief

    If u use SqlDataReader, then u can type this code :

    <%
    This is just example
    
    SqlDataReader reader = cmd.ExecuteReader();
    reader.Read();
    string text = reader["YourColumn"].ToString();
    %>
    
    <% Response.Write(text); %>
    

    Hope this will help U :-D -- modified at 5:04 Monday 6th August, 2007

    Regard, Edwin :)

    ASP.NET help database question

  • file uploading (error: Illegal characters in path) Urgent!
    E Edwin Syarief

    Maybe U should use this string path = Server.MapPath(@"~\Your_folder"); "@" means to escape backslash into string. And "~\" means that your files will upload into server folder. :)

    Regard, Edwin

    ASP.NET sysadmin help question

  • Free refactoring tool for ASP.Net
    E Edwin Syarief

    Woah, Thanx Cycnus, how do know about this coolest tool? This is great!!!

    Regard, Edwin

    ASP.NET csharp asp-net tools visual-studio com

  • Create notepad in runtime asp.net
    E Edwin Syarief

    Did U mean text editor ? U should use javascript to ceate that. www.fckeditor.net Hope this will help U

    Regard, Edwin

    ASP.NET csharp asp-net tutorial

  • Query join probs..,
    E Edwin Syarief
    SELECT DISTINCT your_column FROM bla... bla... bla...
    

    I hope this will help U

    Regard, Edwin

    ASP.NET database design tutorial question

  • customizing account
    E Edwin Syarief

    If U want user can edit their account interface, u should use cms. Of course it will save in database. Regard, Edwin

    ASP.NET database sysadmin question

  • Paging not using Stored Proc or DataGrid
    E Edwin Syarief

    Hi, Usually I use Stored Procedure for paging. If U want paging without datagrid is okay, but if U dont want to use stored procedure then U should create a class for paging. It means for easy maintenance.:) Regard, Edwin

    ASP.NET help question

  • Script need &amp; how to call in our form...,
    E Edwin Syarief

    - In your solution explorer try to right click and choose add new item - Then If u use VS 2005 Master Page item will exist. Create menu bars in that masterpage. Then U add new Item Webform and fill the choose masterpage's checkbox. U will see your menu bar in webform that U just created :-D Regard, Edwin

    ASP.NET javascript tools help tutorial question

  • Script need &amp; how to call in our form...,
    E Edwin Syarief

    Tomi means that you should create MasterPage.master not .aspx. If you create link in MasterPage.master, it will shown in all your webpage. Regard, Edwin

    ASP.NET javascript tools help tutorial question

  • Web.Config file problem... Any Help?
    E Edwin Syarief

    Hi Rashid, U should try ASP.NET Configuration. I believe U will get your answer there. Regard, Edwin

    C# help windows-admin security question workspace

  • problem in generating crysatl reports
    E Edwin Syarief

    TomiEdy wrote:

    if u use query: SELECT * FROM Your_Table Where age < 50 u got an output data age below 50, if u want to show the data where age is more than 50 than u must change your query into : SELECT * FROM Your_Table WHERE age > 50

    I think U right Tomi, maybe U must check your query Rahul Regard, Edwin

    C# css database sysadmin help

  • problem in generating crysatl reports
    E Edwin Syarief
    SqlDataAdapter adapter = new SqlDataAdapter(yourQuery, conn);
    DataSet ds = new DataSet();
    DataTable dt = new DataTable("tablename");
    adapter.Fill(dt);
    ds.Tables.Add(dt);
    ds.WriteXml("C:\text.xml");
    

    Then On your crystal report Database Fields: change your dataset with "text.xml" If U have finish it, then create a dataset with your query, then change the code like this:

    SqlDataAdapter adapter = new SqlDataAdapter(yourQuery, conn);
    DataSet ds = new DataSet("YourDataSet");
    DataTable dt = new DataTable("tablename");
    adapter.Fill(dt);
    ds.Tables.Add(dt);
    
    ReportDocument rd = new ReportDocument();
    rd.SetDataSource = ds;
    crystalReportViewer1.ReportSource = rd;
    

    Regard, Edwin

    C# css database sysadmin help

  • how to do the sqlClr connection & deploy it in c# Express Edition?
    E Edwin Syarief

    Maybe U must check your trigger query again..., because ic on your code there is no problem. Or U can goto msdn forum. Regard, Edwin

    C# csharp help tutorial 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