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
N

Naif_Prof

@Naif_Prof
About
Posts
47
Topics
28
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • .NET Contenet Management System
    N Naif_Prof

    Dears In PHP there are a lot of content management systems ex: EZpublish and now I’m looking for free , tested and trusted .NET content management system that can help me to implement ASP.NET 2.0 web site that contain dynamic contents ex: news also can integrate with visual studio 2005 and support AJAX Any suggestion and Advice please. Thanks

    Web Development csharp php asp-net visual-studio help

  • Help Please
    N Naif_Prof

    Hi, insted of using text box for date user date picker control http://www.basicdatepicker.com/ thanks

    ASP.NET help database sql-server sysadmin

  • Checkboxes in GridView [modified]
    N Naif_Prof

    Hi Sandeep Kumbhar you can create session variable to save user selection in each page and at pagian change upload user selection from session variable thanks

    ASP.NET help csharp asp-net

  • datepicker control in asp.net
    N Naif_Prof

    HI t.aransiola you can use this control http://www.basicdatepicker.com thanks

    ASP.NET csharp asp-net help question

  • query string and any way to encrypt its values
    N Naif_Prof

    dears any help

    ASP.NET database windows-admin workspace

  • query string and any way to encrypt its values
    N Naif_Prof

    Dear Sandeep thanks for your responce but i have to change my code :sigh: and Encryption & decryption will impact the performance or not?:doh: actuly im looking some thing in IIS wihout Encryption & decryption or changing me code..... :wtf: thanks

    ASP.NET database windows-admin workspace

  • query string and any way to encrypt its values
    N Naif_Prof

    Dears I’m using query string to pass variable between pages but the value of this variables is readable in address bar of browser , is their any way to encrypt it without change my code i.e. some configuration in IIS or install third party program Thanks for cooperation and support

    ASP.NET database windows-admin workspace

  • strongly typed dataset ....?
    N Naif_Prof

    Dears In ASP.NET 2 web application, Can I create strongly typed dataset (xyz) and then select some record based on query i.e. Select * from xyz where ID = 999 and job=IT same as normal database table query and then the out put will be bind to GridView and if I create this strongly typed dataset can I write code to be used by all users of application . I mean use it as temporary storage for transaction. thanks

    ASP.NET database csharp asp-net question career

  • Wizard Control Question...
    N Naif_Prof

    Yes i got it protected void Wizard1_NextButtonClick(object sender, WizardNavigationEventArgs e) { if(Wizard1.ActiveStepIndex == 0) { // validation logic if ( ...... ) { e.Cancel = true; } } } thakns

    ASP.NET question help

  • Wizard Control Question...
    N Naif_Prof

    Hi, in AciveStepChanged event i need to validate user data in Specific step ( by code not using validation controles ) if this validation is not passed the user getting stuck in that step and not move to next step unless validation pass How i keep user in Specific step if validation not pass? thanks

    ASP.NET question help

  • create new record (row ) in GridView @ Runtime
    N Naif_Prof

    Hi , to every one I have two GridView in One page , I need to copy record(row) from GridView1 to GridView2 when customer select that row My question how we can create new record (row ) in GridView2 and fill data at run time ? thank a lot

    ASP.NET question sales

  • check Box List and SelectedValue prob.? [modified]
    N Naif_Prof

    Dears When Im using check Box List with 5 item andd when I user select 2 or 3 out of 5 item In database only first selected value inserted only ??? (+ this.DaysCheckBoxList.SelectedValue.ToString() + "')";) Any help -- modified at 2:43 Wednesday 15th November, 2006

    ASP.NET database help question

  • I want to get updated values back from DetailsView
    N Naif_Prof

    Hi When I use DetailsView in VS2005 and set it in defultMode to insert and then when I need to get the new values so in the DetailsView_ItemUpdating event the following code alwayes give me null exception String Field1Values; Field1Values = e.NewValues["xyz"].ToString(); Also I set set ConvertEmptyStringToNull="False" But still I get null exception !!! any one help me so I want to get updated values back from the DetailsView and then handle my updating manually. -- modified at 12:08 Friday 3rd November, 2006

    ASP.NET help

  • template column in GridView !!??
    N Naif_Prof

    Dears Hi, Im using VS 2005 and Instead of using SELECT in GridView I need to use on of GridView column as link to anther page and pass values to second page I use template column but how I can pass parameter and specify the link I use the following but is not working href ="~/xyz/page2.aspx?id=<%# DataBinder.Eval(Container.DataItem, "ID") %>"> thanks....

    ASP.NET visual-studio docker question

  • ORACLE SQL statement in C# !! ??
    N Naif_Prof

    Dear Akhilesh Yadav its not working by after a lot of time the correct syntax is SqlQry = "Select emp_name as \"employees Name\" , emp_Add as \"address\" , dept as \"department\" From test.emp_tab"; so we use \ to cancel meaning of “ in string thanks

    ASP.NET csharp database oracle help question

  • ORACLE SQL statement in C# !! ??
    N Naif_Prof

    Dears I need to write the following ORACLE SQL statement in C# in page of ASP as string Select emp_name as “employees Name” , emp_Add as “address” , dept as “department” From test.emp_tab ; Im using as to rename the column name in datagrid Any one help me to write it by C# as string Notes we in oracle to rename column name we have to use “ ” same as in defining string in C# Thanks

    ASP.NET csharp database oracle help question

  • Using Context Object Disadvantages !!?
    N Naif_Prof

    thanks Sanjeev, I understand from you the following: If we pass variable value from page 1 to page 2 by using context.item and server.transfer We can get the variable value in page 2 only so we can not get it in page 3 or page 4 But if we use session we can get it during the session in any page but it will consume the RAM and professional programmer don’t prefer to use the session thanks again

    ASP.NET question sysadmin tutorial

  • Passing variables between pages using QueryString
    N Naif_Prof

    OK, im using context.item["x"] and server.transfer("test.aspx",true) but it will effect RAM and application Performance? And is there any disadvantages? And as I know the professional programmer don’t prefer to use session ! thanks a lot

    ASP.NET visual-studio

  • Using Context Object Disadvantages !!?
    N Naif_Prof

    hi what is thr Disadvantages of using Using Context Object to pass parameter between pages? the folowing is example //page1.aspx.cs this.Context.Items["x"] = TextBox1.Text; Server.Transfer("page2.aspx", true); //page2.aspx.cs TextBox1.Text = this.Context.Items["x"].ToString();

    ASP.NET question sysadmin tutorial

  • Passing variables between pages using QueryString
    N Naif_Prof

    HI i'm using VS 2005 and i need to use QueryString to pass variables between paged but its visible is there any why to Encrypt this variable value in URL address bar thanks a lot

    ASP.NET visual-studio
  • Login

  • Don't have an account? Register

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