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
P

papa80

@papa80
About
Posts
28
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Dumb problem with DataGrid please help
    P papa80

    Hello friends First at all happy new year of all of you.All the best in next one.)) Cloud you help me please.I will describe the problem.It seens stupid but i did not use VS from 1 year and just now start it again. So we have GridView inside of it are templates for example label and text box for edit mode which are connected with some db.So the problem is appear when i try to update that data exactly in updating event.After pressing update button in quick watch i see that it is give me old value not what i had change ready!!!For example in label value is 1 and when you press button edit in text box is 1 too but my goal is to be changed to 2 so in text box value is changed to 2 but after pressing of bot ton the value which is extract is 1???Pleas cloud you tell me some body why.Unfortunately the at the moment i am not in-front of my pc but let try the code. string name; name=((TextBox)(gvMain.Rows[e.EditIndex].Cells[1].Control[1])).Text; And result is 1; Please tell me why Now the project on which i work it use net.3.5 can you explain me if there is some changes and why if i catch the text box the value is old one not the value which i already type on it. Thanks in advance.

    when i want to read something good just seat and type it

    ASP.NET help database visual-studio wpf hosting

  • GridView problem please help
    P papa80

    Hello friends First at all happy new year of all of you.All the best in next one.)) Cloud you help me please.I will describe the problem.It seens stupid but i did not use VS from 1 year and just now start it again. So we have GridView inside of it are templates for example label and text box for edit mode which are connected with some db.So the problem is appear when i try to update that data exactly in updating event.After pressing update button in quick watch i see that it is give me old value not what i had change ready!!!For example in label value is 1 and when you press button edit in text box is 1 too but my goal is to be changed to 2 so in text box value is changed to 2 but after pressing of bot ton the value which is extract is 1???Pleas cloud you tell me some body why.Unfortunately the at the moment i am not in-front of my pc but let try the code. string name; name=((TextBox)(gvMain.Rows[e.EditIndex].Cells[1].Control[1])).Text; And result is 1; Please tell me why Now the project on which i work it use net.3.5 can you explain me if there is some changes and why if i catch the text box the value is old one not the value which i already type on it. Thanks in advance.

    when i want to read something good just seat and type it

    Web Development help database visual-studio wpf hosting

  • Security(Problem with create role )[modified]
    P papa80

    The problem is that ms create all this table for you automaticly with lot of code and i want to use that code.If i change db after i must change code in all application and believe that is lot of work :(( i think something is not right with my db but what ?Even that thank you for your answare

    when i want to read something good just seat and type it

    ASP.NET asp-net csharp security help tutorial

  • Security(Problem with create role )[modified]
    P papa80

    It can't be null because is connected with user :((

    when i want to read something good just seat and type it

    ASP.NET asp-net csharp security help tutorial

  • Security(Problem with create role )[modified]
    P papa80

    Thank's i will try it but i am not sure that is correct because if i made change after that is possible other function to don't work.((

    when i want to read something good just seat and type it

    ASP.NET asp-net csharp security help tutorial

  • Security(Problem with create role )[modified]
    P papa80

    hi again the table is create automaticly by visual studio when you use asp.net configuration that is way i don't change nothing but has you see is appear some exception!Did you have idea how to solve the problem. GO /****** Object: Table [dbo].[aspnet_Roles] Script Date: 02/15/2007 21:55:11 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[aspnet_Roles]( [ApplicationId] [uniqueidentifier] NOT NULL, [RoleId] [uniqueidentifier] NOT NULL, [RoleName] [nvarchar](256) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [LoweredRoleName] [nvarchar](256) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Description] [nvarchar](256) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) ON [PRIMARY]

    when i want to read something good just seat and type it

    ASP.NET asp-net csharp security help tutorial

  • Security(Problem with create role )[modified]
    P papa80

    Hi friend please can you tell me how to solve this problem.When i try to create new role is appear this exception? " Cannot insert the value NULL into column 'RoleId', table 'C:\WEB-PROJECT\02.12.2007\APP_DATA\IVOIRENETPUB.MDF.dbo.aspnet_Roles'; column does not allow nulls. INSERT fails. " Even if i use asp.net configuration!!! Good bye -- modified at 2:46 Thursday 15th February, 2007

    when i want to read something good just seat and type it

    ASP.NET asp-net csharp security help tutorial

  • How to set dinamicly text into head
    P papa80

    Hello everybody please help me if you can I just need to know how to set some text between ? dinamicly.It is comming from some db! Best Regards N.Nikolov:)

    when i want to read something good just seat and type it

    ASP.NET database help tutorial question

  • Beginer problem with ImageButton even
    P papa80

    Hi Every body i need help.My question is conected with even OnClick on server side.So i get some PostBackUrl from Db who is change for every postback randomly.When is a clicked botton i go to Redirected page unfortunatly when i click back on web browser my pictures is same but my redirection is diffrent.I put that in if(!PostBack) but now how to store the url for last click and if i have same page in different window??Please help. her is a code //Url who is appear when button is pressed private String sLinkUrl; protected void imgBut_Click(object sender, ImageClickEventArgs e) { if (sLinkUrl == null) { sLinkUrl = Session["Url"].ToString(); } Response.Redirect(@"http://"+sLinkUrl); } protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { //idBanner int nId; ///Title of banner String sTitle; ///Imagine Url String sImgUrl; //check if GetRandomBanner function have online banner if (ControlAccess.GetRandomBanner(out nId, out sTitle, out sImgUrl, out sLinkUrl) > 0) { //set title imgBtn.ToolTip = sTitle; ///set imagine url imgBtn.ImageUrl = sImgUrl; //Add object to the sesion state Session["Url"] = sLinkUrl; } HttpContext.Current.Trace.Write(ControlAccess.SumBannerImpression(nId).ToString()); } } Best regard N.Nikolov

    when i want to read something good just seat and type it

    ASP.NET help question database sysadmin debugging

  • Get hour from date
    P papa80

    Thank's a lot

    when i want to read something good just seat and type it

    Database question

  • DataList problem
    P papa80

    Hi everybody I have datalist who have it inside ImagineButton. protected void list_SelectedIndexChanged(object sender, EventArgs e) { int name=list.SelectedItemStyle.te }   How can catch the clicked button.Please help me. Good bye and hava a nice day.

    when i want to read something good just seat and type it

    ASP.NET help

  • Get hour from date
    P papa80

    Hi How can i extract hour from datatime varable??? Good bye Best Regards N.Nikolov

    when i want to read something good just seat and type it

    Database question

  • Rotate pictures
    P papa80

    Hi everybody How i can rotate some pictures in asp??? Thank's of everybody -- modified at 11:27 Wednesday 20th September, 2006

    when i want to read something good just seat and type it

    ASP.NET question

  • Controls
    P papa80

    Thank's a lot

    when i want to read something good just seat and type it

    C# tutorial question

  • Can a Math genius please help me!? [modified]
    P papa80

    You choose wrrong forum brother try it in google groups but math

    when i want to read something good just seat and type it

    C# help regex question code-review

  • Controls
    P papa80

    Hi How i can get control by names: For example i have 3 textbox with name tb0,tb1,tb2 i need to fill them in loop how to do that?? for(int i=0;i<3;i++) { TextBox tb=??? } GOod bye best regards

    when i want to read something good just seat and type it

    C# tutorial question

  • How is made documentation
    P papa80

    Hi every body please can you tell me or give me some url where i can find how is made documentation.Is it in documentation includet help?

    when i want to read something good just seat and type it

    C# help question

  • How to convert string
    P papa80

    Supper thank's

    when i want to read something good just seat and type it

    C# help tutorial

  • How to convert string
    P papa80

    How to change the culture ???

    when i want to read something good just seat and type it

    C# help tutorial

  • How to convert string
    P papa80

    Hi I have a string in format "21.05.2004" pleas tell me how to convert it to DataTime format.All time i get InvalidDataException.Pleas help me if you can.

    when i want to read something good just seat and type it

    C# help tutorial
  • Login

  • Don't have an account? Register

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