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
K

katelva

@katelva
About
Posts
31
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Fit webform in one page?
    K katelva

    Hi, I have been design my stuff in the webform using masterpage,but when I test using the browser, the user need to scroll down the page to see all the content, I wan to make all the content which user can see in one page? Regards, Katelva

    ASP.NET csharp asp-net help tutorial question

  • Fit webform in one page?
    K katelva

    Hi, I am create a masterpage and webform and I want to display the webform in one page like when we open the website link ,default page, all the contents display in one page,the user no need to scroll up and down. How to do this using asp.net masterpage or webform? Anyone can help? Thanks. Regards, Katelva

    ASP.NET csharp asp-net help tutorial question

  • How to I create a "New articles of today" list in the website?
    K katelva

    Hi, If I would like to retrive the article from the database and display in

    • using asp.net like the link below http://www.asp.net/ Or put some bullet that I create, how can I do that? Thanks. Regards, Katelva
    ASP.NET question csharp asp-net database tutorial

  • Create login page using asp.net C#?
    K katelva

    Hi, I am newbie to asp.net C#, so I am not sure how to read the data from SQL Express database and validate the user input from the database using asp.net C#. Mostly from book and internet are in VB language. I don't want use login control in asp.net C#. The below is I create the main page myself. In vb,I am ok with it but C# not good. Anyone can help and any recommended website for asp.net C#? The bottom is my source code where I have tried to use SQLdataReader: aspx <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" Title="Untitled Page" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="Main" Runat="Server"> </asp:Content> <asp:Content ID="Content3" ContentPlaceHolderID="Navigation" Runat="Server"> </asp:Content> <asp:Content ID="Content4" ContentPlaceHolderID="Footer" Runat="Server"> </asp:Content> <asp:Content ID="Content5" runat="server" contentplaceholderid="RightTopContent"> <asp:Image ID="Image1" runat="server" Height="26px" Width="162px" /> <br /> Username :<asp:TextBox ID="txtUserName" runat="server"></asp:TextBox> <br /> Password :<asp:TextBox ID="txtPassword" runat="server"></asp:TextBox> <br /> <asp:Button ID="btnSubmit" runat="server" onclick="btnSubmit_Click" Text="Login" /> <br /> </asp:Content> <asp:Content ID="Content6" runat="server" contentplaceholderid="RightMiddleContent"> </asp:Content> <asp:Content ID="Content7" runat="server" contentplaceholderid="MainContent"> </asp:Content> aspx.cs protected void btnSubmit_Click(object sender, EventArgs e) { string uname = txtUserName.Text; string pwd = txtPassword.Text; string connectionString = "Data Source= .\\SQLEXPRESS;" + "AttachDbFilename=\"C:\\Documents and Settings\\kathy\\My Documents\\Visual Studio 2008\\WebSites\\WebSite1\\App_Data\\salon.mdf\";" + "Integrated Security=True;" + "User Instance=True"; SqlConnection myConnection = new SqlConnection(connectionString); SqlCommand cmd = myConnection.CreateCommand(); cmd.CommandText = "SELECT * FROM [Customer]"; myConnection.Open(); SqlDataReader dr = cmd.ExecuteReader(); while (dr.Read()) { if (dr.GetOrdinal("UserName").ToString() == txtUserName.Text) { Response.Write("H

    ASP.NET csharp database asp-net visual-studio sysadmin

  • How to validate user input with SQL database using asp.net C#?
    K katelva

    Hi Christian, Can you give me the recommended website of learning asp.net using language C#, I am newbie to asp.net C#, so I am not sure how to read the data from SQL Express database and validate the user input from the database using asp.net C#. Mostly from book and internet are in VB language. The bottom is my source code where I have tried to use SQLdataReader: protected void btnSubmit_Click(object sender, EventArgs e) { string uname = txtUserName.Text; string pwd = txtPassword.Text; string connectionString = "Data Source= .\\SQLEXPRESS;" + "AttachDbFilename=\"C:\\Documents and Settings\\kathy\\My Documents\\Visual Studio 2008\\WebSites\\WebSite1\\App_Data\\salon.mdf\";" + "Integrated Security=True;" + "User Instance=True"; SqlConnection myConnection = new SqlConnection(connectionString); SqlCommand cmd = myConnection.CreateCommand(); cmd.CommandText = "SELECT * FROM [Customer]"; myConnection.Open(); SqlDataReader dr = cmd.ExecuteReader(); while (dr.Read()) { if (dr.GetOrdinal("UserName").ToString() == txtUserName.Text) { Response.Write("Heelo"); //dr.Close(); } //dr.Close(); myConnection.Close(); } } Thanks. Regards, Katelva

    ASP.NET csharp database question asp-net

  • How to validate user input with SQL database using asp.net C#?
    K katelva

    Hi, I have created a login page using asp.net C#(not using login control).But I am wondering how to I validate the user input with SQL database? I have created a login.aspx with user input username and password, I put the code in login.aspx.cs,but I am not sure the syntax for asp.net in C#. So far, all the codes I search are for VB.net. I am not sure how do I validate user input with SQL database using asp.net in C#? Do anyone have any recommended websites for this? Thanks. Regards, Katelva

    ASP.NET csharp database question asp-net

  • SQL connection in Login page using asp.net c#?
    K katelva

    Hi, Thanks for your information. But I am wondering how to I validate the user input with SQL database? I have created a login.aspx with user input username and password, I put the code in login.aspx.cs,but I am not sure the syntax for asp.net in C#. So far, all the codes I search are for VB.net. I am not sure how do I validate user input with SQL database using asp.net in C#? Do you have any recommended websites for this? Thanks. Regards, Katelva

    ASP.NET csharp asp-net database help question

  • SQL connection in Login page using asp.net c#?
    K katelva

    Hi, Thanks for your information. But, I am wondering how to I validate the user input with SQL database using asp.net C#? For example, I create a login.aspx and I put the code in login.aspx.cs. I have put the SQL connection inside but I do not know how to I validate user input with SQL database? Do you have any good websites suggested for that? Mostly I search is in VB.net not asp.net in C#. I don't know the asp.net C# syntax of checking the user input with SQL database? Thanks. Regards, Katelva

    ASP.NET csharp asp-net database help question

  • SQL connection in Login page using asp.net c#?
    K katelva

    Hi, I create a login page in asp.net c# but I do not know the SQL connection to connect the SQL and check the username and password? Mostly I search online is about VB not asp.net #. Anyone can help me? Thanks. Regards, Katelva

    ASP.NET csharp asp-net database help question

  • How to link silverlight application created using Blend in asp.net using vs2008?
    K katelva

    Thanks for your suggestion. But I would like to know whether there was any difficulty connecting the data with the MySQL database or not? Actually, I am creating a store website and the client can order the products online. Because Silverlight is new Microsoft product,hence, I am not sure whether have any issue with the database connection or not? Regards, Katelva

    WPF csharp tutorial question asp-net visual-studio

  • How to link silverlight application created using Blend in asp.net using vs2008?
    K katelva

    Hi Michael, It means created the silverlight application which hosts in asp.net,am I right? Actually, I would like to do is create Asp.net website(navigation), then when I click on the link it will appear the Login form in the asp.net webform which mean the design is using css and asp.net but the content such as registration form, login form...etc is using silverlight. Can I do this way? Thanks. Regards, Katelva

    WPF csharp tutorial question asp-net visual-studio

  • How to link silverlight application created using Blend in asp.net using vs2008?
    K katelva

    Hi, I have created login and registration silverlight application using blend June Preview 2008. I would like to ask how to I link this two application in asp.net using visual studio 2008. For example, I create an asp.net website and I would like to add the login and registration silverlight apllication in this website.When I click on the navigation link which created using asp.net such as login button, then the page will show the login silverlight application and it same to the registration as well. Hence, how can I do for that?? Thanks. Regards. Katelva

    WPF csharp tutorial question asp-net visual-studio

  • How to create event handler using visual studio 2008?
    K katelva

    Page.xaml x:Class="SilverlightApplication5.Page" xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="parentCanvas_Loaded" Width="400" Height="300" Background="Aquamarine"> <button> x:Name="submit" Width="100" Height="200" Canvas.Top="100" Background="Azure" > </button>

    WPF csharp question asp-net visual-studio wpf

  • How to create event handler using visual studio 2008?
    K katelva

    Hi, I am using visual studio 2008 to code behind my silverlight application(drag and drop). I have been browse ans see the sample from online and silverlight book. But i having the problem here. When I loaded the silverlight application in asp.net Page.xaml

    x:Class="SilverlightApplication5.Page" xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="parentCanvas_Loaded" Width="400" Height="300" Background="Aquamarine"> x:Name="submit" Width="100" Height="200" Canvas.Top="100" Background="Azure" >

    Page.xaml.cs using System; using System.Collections.Generic; using System.Linq; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace SilverlightApplication5 { public partial class Page : Canvas { private void parentCanvas_Loaded(object sender, RoutedEventArgs e) { InitializeComponent(); } } } The mozilla browser do not show up any silverlight content,jz blank it where I have plug in the silverlight in asp.net. When I remove the "LOADED" element from the Page.xaml and use direct InitializeComponent() in Public Page(), it works. So, what is the problem with this?? Thanks. Regards, Katelva

    WPF csharp question asp-net visual-studio wpf

  • how to create own set of tool palette?
    K katelva

    Do you mean I can use the path in Silverlight? Can you teach me how to access the path and brushes of silverlight? Coz I would like to create something like paint application online? When user clicks on the pen tool, then the user can draw online? Thanks Regards, Katelva

    WPF tutorial question

  • how to create own set of tool palette?
    K katelva

    Hi, I would like to ask anyone have any ideas how to create own set of tool palette such as pen tool,brushes using Silverlight? Thx. Regards, Katelva

    WPF tutorial question

  • Expression Blend September Preview Issue
    K katelva

    Hi, When I want to create a Silverlight Application(.Net "Orcas"), there was an error appeared. Creating project failed. The imported project "C:\Program Files\MsBuild\Microsoft\VisualStudio\v9.0\Silverlight\Microsoft.Silverlight.CSharp.targets" was not found. Confirm that the path in the declaration is correct,and that the file exists on disk. How to solve the problem above? Thank you. Regards, Katelva

    WPF help csharp visual-studio tutorial question

  • How to develop 3D virtual environment online using C#.net?
    K katelva

    Hi all, I am planning to develop a website which have a simulator where allows users to design thier nail design online. This will be something drag and drop the design to the fingernail in 3D mode,decoration the nail and also display the nail design gallery in 3D which is fully interactive. I do not want to choose Flash is because it just align the timeframe and simple coding. I want algorithm in my program and it is quite challenge to me to learn. I posted on C# forum and others as well and they suggest me to use Silverlight. Do anyone have any website related to the Silverlight?Is Silverlight involved algorithm? Thanks.

    WPF csharp design adobe algorithms tutorial

  • How to develop virtual environment online using C# with Managed DirectX? (in 3D)
    K katelva

    I do not want to use Flash because it just align the timeframe and some simple code. I want algorithm involved in my program. Hence, I choose using C# with DirectX. This is used for game development but I do not sure can it apply in my program which my program is similar like the bottom link website. My program want to be in 3D,fully interactive. http://www.edheads.org/activities/knee/[^] Instead of using flash, got any language is better than this? Thanks. Katelva

    C# question csharp graphics design game-dev

  • How to develop virtual environment online using C# with Managed DirectX?
    K katelva

    Thanks for yur suggestion. I just would like to ask does this Silverlight involves any agorithm code or not? Because I never use that and I need algorithm in my program not like Flash just align the time frames. My program need to do in 3D,mean fully interactive. http://www.edheads.org/activities/knee/[^] The link above is virtual surgery knee demo. Thanks. Katelva

    Web Development question csharp graphics design game-dev
  • Login

  • Don't have an account? Register

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