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
A

aaraaayen 0

@aaraaayen 0
About
Posts
125
Topics
81
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • .Net Architechture
    A aaraaayen 0

    Hi All, Please give me idea about the .Net Architecture.(3-tier Architechture). In This What the Presentation , Business Logic and Data Access. Please provide me the information r suggest some site to get. Thanks and Regards,

    Prya

    ASP.NET csharp business architecture

  • Session Management
    A aaraaayen 0

    Hi Friends, The following question was asked me in my interview. Since i am new to .net technology, Please help me to know the answer for this question. How Session Management is handled by ASP.NET? Thanks in Advance, Regards,

    Prya

    ASP.NET question csharp asp-net help career

  • Convert from MS-Access to DB2 Database
    A aaraaayen 0

    Hi Friends, I need to convert ms-access 2003 database to ibm db2 8.2. Please suggest me some solution. Thanks in Advance. Regards,

    Prya

    IT & Infrastructure database

  • Example for Passing parameters
    A aaraaayen 0

    Hi friends, How to pass parameters via .net to database. (ie) how to call stored procedure and to pass parameters. Please help. Thanks in Advance,

    Prya

    ASP.NET database tutorial csharp help

  • Migrating from ASP to ASP.Net
    A aaraaayen 0

    Hi friends, Please provide the steps and details to convert asp application to asp.net application. Thanks in advance, Regards

    Prya

    ASP.NET csharp asp-net

  • Table Partitioning in DB2 8.2
    A aaraaayen 0

    Hi Friends, I need some guidelines Reg. Table Partioning in db2 8.2. Please provide me some suggestions. I didnt get good idea reg. table partitioning in db2 8.2. Please Help me. Thanks in Advance, Best Regards,

    Prya

    IT & Infrastructure help

  • Sharepoint Portal in .Net
    A aaraaayen 0

    Hi friends, Give me some idea for working with Sharepoint portal in .Net. Please help me. Thanks and Regards

    Prya

    ASP.NET csharp sharepoint help

  • Thread Test
    A aaraaayen 0

    Hi Friends, Pls let me know What is Thread Testing. Thanks in Advance, Regards,

    Prya

    Collaboration / Beta Testing testing beta-testing question

  • Books
    A aaraaayen 0

    Hi friends, Please give me some details reg. good book for asp.net for beginners. Thanks in Advance. Regards,

    Prya

    ASP.NET csharp asp-net learning

  • Reg. .Net Certification
    A aaraaayen 0

    Hi Friends, For the past 1 year i have been working in .Net Technology. Previously in VB and ASP. Now i want to do certification in .Net. I need some information reg. that. Please give me the details. Which test i have to write first. Dumps for that and tutor for certification. If anyone having pls. let me know. I am too thankful for u all. Regards,

    Prya

    ASP.NET csharp

  • Reg. Triggers in DB2 8.2
    A aaraaayen 0

    Hi friends, Please help me for triggers. Thats is when i insert or update on one table it should get updated in another table. I am using the following query. Its created without any errors. But not updating the fields. create trigger trig1 after update of stn on stn referencing old as o new as n for each row mode db2sql when (exists(select stn_id from stn where stn_id = o.stn_id))begin atomic update oper set oper_stn_id = n.stn_id where oper_stn_id = o.stn_id; end Likewise also, My date field in a table should automatically changed to system date daily by trigger. Please help me for these two. Thanks in Advance, Best Regards,

    Prya

    IT & Infrastructure

  • Table Partitioning
    A aaraaayen 0

    Hi friends, Please help me to do table partitioning in ibm db2 with example. its urgent. Thanks in advance, Regards,

    Prya

    IT & Infrastructure help tutorial

  • Garbage Collection
    A aaraaayen 0

    Hi friends, Please give me details reg garbage collection in .net and how the garbage collector knows the object is unused and to free it. Is we have to provide any code for GC to know about the unused objects. Its asked in my interview. Expecting help. Thanks in Advance, Regards,

    Prya

    ASP.NET csharp help career

  • Validation in TextBox controls in asp.net
    A aaraaayen 0

    Hi, Thanks. you told that add function in javascript. but we have to specify the name of the textbox in that function know. Then we have to write for every textbox? Can you please explain me. Thanks and Regards,

    Prya

    ASP.NET csharp javascript asp-net help

  • Validation in TextBox controls in asp.net
    A aaraaayen 0

    Thanks a lot for your reply. But, if i use required field validator then, have to use 35-40 that much of validators. sometimes if there is a textbox for more than 100 then also v have to use more than 100 of required field validator. so is there any possiblity in javascript, for validating all the textboxes should not be empty.

    Prya

    ASP.NET csharp javascript asp-net help

  • Validation in TextBox controls in asp.net
    A aaraaayen 0

    Hi friends, I am working in asp.net 2.0. in my page i am having 35-40 textboxes. I want to validate for all the textboxes ie., if the textbox is empty is should give proper message. i want to validate it through javascript. Please give me suggestion. Expecting help. Thank in Advance, Regards,

    Prya

    ASP.NET csharp javascript asp-net help

  • KeyPress Event for TextBox
    A aaraaayen 0

    Hi Friends, I am working in C# Windows Application 2.0. In my page, i am having 2 textboxes. But when i add keypress event for textbox1 nothing happening at runtime. my code: private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) { if (e.KeyChar == (System.Char)Keys.Enter) { //SendKeys.Send((System.Char)Keys.Tab); MessageBox.Show("Hi"); } } Please help me. Thanks in Advance, Regards,

    Prya

    C# csharp help

  • User Control
    A aaraaayen 0

    Hi, I have created user control called UserCtrl.ascs in my solution which includes two textboxes in that usercontrol and and also i have added the following code in .ascx.cs page. public string pUser { get { return TextBox1.Text.Trim; } set { TextBox1.Text = value; } } public string pPass { get { return TextBox2.Text.Trim; } set { TextBox2.Text = value; } I added that user control to my aspx page. Please tell me how to use that textboxes inside aspx.cs page. Thanks in Advance, Regards,

    Prya

    ASP.NET tutorial

  • Publish Problem in C#.Net
    A aaraaayen 0

    Thanks. But in Webserver FrontPage server extensions is installed.

    Prya

    C# help csharp sysadmin windows-admin

  • Publish Problem in C#.Net
    A aaraaayen 0

    I am working in C#.Net. My Application is like SmartClient application. When i try to publish in server it gives the following error. Please Help Me to resolve this problem. But FrontPage extensions is installed in server with accessibility. But I think the problem is in IIS, but not sure. Error: Failed to connect to with the following error: Unable to create the Web 'http://192.168.1.224/Smartdesk/'. The Web server does not appear to have the FrontPage server extensions installed. Thanks in Advance, Regards,

    Prya

    C# help csharp sysadmin windows-admin
  • Login

  • Don't have an account? Register

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