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
R

Rockman X7

@Rockman X7
About
Posts
18
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Strange Bizzare Master Page n It's Content...
    R Rockman X7

    Helo all! Actually I'm trying to implement new feature in ASP.NET 2.0. Yes... It is master page... When I try do a simple master page... It's working properly... But when I do something new... Like code below... It become not working... Actually I want to make the table row's content can be scrolled... Not the IE windows... In the design page... It works... But after I compiled and see the result... It isn't scrolled.... Anybody can help me??? <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="Page_MasterPage" %> Untitled Page

    <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile ="~/Page/Master/Chronicle.master" CodeFile="Temp.aspx.cs" Inherits="Page_Temp_Temp" %> <%@ Reference Control="~/Page/Controls/ctrlUserNode.ascx" %> testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing
    testing

    ASP.NET csharp asp-net design testing beta-testing

  • Variable Watch Missing
    R Rockman X7

    Helo all! I just wondering... Why the debugger is quite annoying to me... Firstly, I'm using the VS.NET 2005 Prof, and I test the debugging in C++ code. When I test this code through debug /////////////////////////////////////////////////////////// int searchString( string data, char key ) //this function is used to search character in string { int result = -1; //this is the position of character for ( int counter = 0; counter < data.length(); counter++ ) { if ( data [ counter ] == key ) //check if we got same character { result = counter; //set result counter = data.length(); //out from loop } } return result; } /////////////////////////////////////////////////////////// why I can't see result variable in local windows, or watch windows? It only says "result CXX0017: Error: symbol "result" not found" I just got mad... Anyone can help me how to show the result variable in those windows? Because I need to see the variable value in the other code... Thanks!

    Visual Studio debugging help csharp c++ visual-studio

  • Help on design registration user!
    R Rockman X7

    Helo all... I now have problem in designing website in ASP.NET actually I want to make a registration user page that have random number to make sure there is no bot script to register user and then I create try to create those things with -- creating user control that contain the code to generate the number first then I display it to the client page, I implement a function to handle when we generate the number and also retreive the number that already generated -- creating the page that contain all the textbox to input the registration and the of course there is the user control that I built before and I call the generate number function when page load... but the strange is... each time I render the page... It shows the number "for example the number are 12345" but after I click button to register... The number changed... into other number... It makes me crazy... Anyone can help me? Thanks!

    ASP.NET help csharp asp-net design tools

  • Add User Control to Table
    R Rockman X7

    Oh my GOD... I just realize my mistake! Do you know what? I already automatically set all my control to absoluted position... And it makes all my user control in 1 position... Hahaha! Oh my... But know i have another question... When I set relative position... I couldnt use the alignment option... When I set all my control in the left alignment... It become so funny... Do you have another suggestion to make my control/label to have position x n y except relative position < alignment problem > and absolute position < that occur in previous problem > in the style? Thanks very much! I aprreciate your help!

    ASP.NET question

  • Add User Control to Table
    R Rockman X7

    Helo... All your suggestion still not working... Can you please create 1 example for me? I already desperate... In previous version it's working... But after I migrate to asp2.0 all become nightmare... Thanks!

    ASP.NET question

  • Add User Control to Table
    R Rockman X7

    Helo! Firstly, I wanna say thanks for your attention... But after I see your code and tested it... It just same... Only 1 user control that appear... Okay I will tell you what I want to do... I use user control to make many duplicated control to display the user detail... In the user control I already have many properties to set and get all the value... And I want to make many user controls to display the user detail in each row of table... As you can see I use loop to test the user control by add the user control to the cell and add that cell to row and finally add that row to table... And I have another question... How do I if I want to change type of a object? Like this? Control myControl = new Control(); myControl = LoadControl ( "~/Page/Controls/ctrlTemp.ascx" ); ( ctrlTemp ) myControl.userName = "Robert"; // can I do this? Because I need the properties... But the "myControl" still type Control can I change to ctrlTemp so that I can access the userName property Thanks!

    ASP.NET question

  • Add User Control to Table
    R Rockman X7

    Helloo all! After I know, there is no way to add the user control except using @References ( if we need the property in that user control ), now I want to add that user control to the table by add the user control to the TableCell and add that TableCell to the TableRow and finally add to the Table... After I do it... There something wrong... All the user control just like in 1 row... So that I can see all the user control in 1 row... Anyone know what this happened? //this is my code to add the user control for ( int counter = 0; counter < 5; counter++ ) { TableRow tableRow = new TableRow(); TableCell tableCell = new TableCell(); ctrlTemp ctrl= ( ctrlTemp ) LoadControl( "~/Page/Controls/ctrlTemp.ascx" ); //load tableCell.Controls.Add( ctrl ); tableRow.Cells.Add( tableCell ); table.Rows.Add( tableRow ); } and the user control just add a label... Thanks for your attention! And please reply to me if you know something!

    ASP.NET question

  • Confused... ASP.NET 2.0 User Control
    R Rockman X7

    Helo Todd! Thanks for replying... Yeah, after we type the reference of that user control, we able to see the class name... But is there any other way except add the reference? Oh yeah! I wanna ask for other things also... Do you know what web site that provide tutorial how to make a good class structure? I think my class design is really bad... Any clue? Thanks!

    ASP.NET csharp asp-net help question

  • Confused... ASP.NET 2.0 User Control
    R Rockman X7

    Helo all! Hmm.. Actually I just "new" using the ASP.NET 2.0 and I quite confused... And I try to add user control in the web page by using code behind and programmatically in C#... Unfortunately, I couldn't do it... Because I can't find the user control class... Anyone can help me?

    ASP.NET csharp asp-net help question

  • Hmmm... Strange...
    R Rockman X7

    Hello all! I'm one of vb developer and now i'm doing my web project using asp.net in vb language! But i have many difficulties n odd things! Maybe you guys can help me! OK Firstly, i'm gonna explain u what i'm doing in my project! I want to build my web site using table consist of panels to hold my user control! ==================== =Logo = ==================== =Tab=Main Page = = = = = = = = = = = = = ==================== Nah! I also create procedure to load usercontrol automatically! After that, i create button to call that procedure! But something wrong happened! When i click the button, it directs to the user control that i want, n in the second try, it doesnt work ! i have to click it twice so the event button onclick is called! Do you know what happening? Or do you have suggestion to make website with frame that i want? Thanks!

    ASP.NET csharp asp-net help question

  • ASP.NET IIS Problem
    R Rockman X7

    Hello Sivilian! Firstly, I want to say thank you because u replied my message. But I still doesn't work! I think the problem is in the IIS. When I press the run button The services always show message "The service did not respond to the start or control request in timely fashion." And I tried to write "localhost" in IE. There is no respond. How do u think?

    ASP.NET help csharp asp-net windows-admin question

  • ASP.NET IIS Problem
    R Rockman X7

    Hello there! I have many problems about IIS and ASP.NET. But i will tell u my problems one by one. yah I can't start my IIS. when i clicked the run button. The services is not responding. I don't know what's going on. But when i click the properties, there message, it says,"unexpected error 0x800cc801 occured". Please help me! If u don't mind, would u please to explain me clearly? Becoz I just started making web site using ASP.NET.

    ASP.NET help csharp asp-net windows-admin question

  • Help!
    R Rockman X7

    Everything are okay.

    Label

    But it still didn't appear.

    ASP.NET csharp asp-net help question

  • Help!
    R Rockman X7

    Hei2 I found something. When I created a button in WEB FORM Panel. And I compiled it the button didn't appear. But if i created a button in HTML Panel. And I compiled it the button appeared. But it's strange. Why I can't create a button in Web Form panel? But in Design mode. The button appeared.

    ASP.NET csharp asp-net help question

  • Help!
    R Rockman X7

    Ooo I understand. But your code is similar with the code I created. Do I have to use SQL Server? Or something else? Ops I forgot to tell you. I'm Vb.Net developer. Is "protected System.Web.UI.WebControls.Button Button1;" the c code?

    ASP.NET csharp asp-net help question

  • Help!
    R Rockman X7

    no I didn't. I have tried to create the button programmatically and using the designer. But the button didn't appear. Hiks. And what is Page.Controls collection? I'm sorry i'm newbie in ASp.NEt

    ASP.NET csharp asp-net help question

  • Help!
    R Rockman X7

    no I didn't. I have tried to create the button programmatically and using the designer. But the button didn't appear. Hiks.

    ASP.NET csharp asp-net help question

  • Help!
    R Rockman X7

    Hello, I got a difficulty to use ASP.NET. When I create a button in web form. And I compiled it the button didn't appear. What should I do? do I must setting something?

    ASP.NET csharp asp-net help 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