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
S

Shalini_U

@Shalini_U
About
Posts
17
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Paging in DataList
    S Shalini_U

    <1 2 3 4 5> When Clicking the next button, next page number should be displayed. Anyhow, I solved the problem. Thank u

    ASP.NET database asp-net

  • Paging in DataList
    S Shalini_U

    Wat abt remaining numbers? How should I use that?

    ASP.NET database asp-net

  • Paging in DataList
    S Shalini_U

    I tried paging in ASPNET. My code get the lists from the database using stored procedure with entire records. Then, according to the number of pages, the page number should be displayed. I need only limited number of page numbers to be shown in a page. When, I click next button, next set of page number should be displayed. My stored procedure will return dataset. This is my code for Paging.. private void doPaging() { DataTable dt = new DataTable(); dt.Columns.Add("PageIndex"); dt.Columns.Add("PageText"); for (int i = 0; i <= totalpage; i++) { DataRow dr = dt.NewRow(); dr[0] = i; dr[1] = i + 1; dt.Rows.Add(dr); } dlPaging.DataSource = dt; dlPaging.DataBind(); } This code will display all page numbers once in a page.. Instead I need only 5 page numbers should display once. When I click next button, next 5 page numbers should be displayed

    ASP.NET database asp-net

  • How to edit Master Page
    S Shalini_U

    MenuItem mnu = (MenuItem)frm.FindControl("menuitem1"); This shows error..... I used this code now.. Menu1.Items[3].Enabled = true; It's working for me......... Thank you for ur idea...

    ASP.NET tutorial question

  • How to edit Master Page
    S Shalini_U

    Hi! Thank U..... I used that Code... But, error occurs that "Object Reference Not set to an instance of Object"

    ASP.NET tutorial question

  • How to edit Master Page
    S Shalini_U

    I can't Get u... I stored the user details in session.. I can'access the controls and properties of the master page in it's cs file...

    ASP.NET tutorial question

  • How to edit Master Page
    S Shalini_U

    Permission Means, just to check whether the user is enabled for a particular feature... So that the particular button is enabled for him... for this, I'll get the information abt the user whether the user is enabled or not from the database table. Then , I hav to set that particular button to enabled or disable. When I'm tried to get the control of Master Page, I can't do this in code behind... Is any other way to achiive this??

    ASP.NET tutorial question

  • How to edit Master Page
    S Shalini_U

    HiEveryone!!! I'm using Master page in my website.... When the user logged in, the asp menu button of the master page should be enabled or disabled according to the user permission.... How to do this? Plz Reply!!!!!!!! I Cannot able to access the controls of Master Page in Code Behind.. How to access those controls and edit the properties of those controls???

    ASP.NET tutorial question

  • single User single login
    S Shalini_U

    Deadlock Situation may occur na?? ? Then, any user could not log in again

    C# question csharp asp-net sysadmin help

  • single User single login
    S Shalini_U

    I've Created one Desktop Application which has server client access... Every user will has different login. Now the problem is, when one user is login, the same user cannot be login from other pc... The msg should come as the 'user is already Login'. In ASP.Net, it can be achieved through session.. But, how can I do this in Desktop Application. There is one solution.. We can maintain one log table for the logined users. But, that too will face deadlock situation.... Is any other solution for the single user login??

    C# question csharp asp-net sysadmin help

  • Synchronization
    S Shalini_U

    I want to Synchronize two Database in two server in sql server 2008. Database Mirroring is not working for me... I've created Master key, Certificate, endpoints... Everything is perfect.. But, even though, the Mirroring is not working.. Is there any other way to attain synchronization... Plz, Anybody Could help me???

    Database database sql-server sysadmin cryptography help

  • Database Mirroring
    S Shalini_U

    I used TDE Certificate for my database.... Later I disabled the encryption.. But, anyhow, I cannot able to restore the database to another server.... Problem is still the log file is using the certificate... How to remove the certificate completely... Plz Anybody Help me!!!!!!!!!!:confused:

    Database help database sysadmin security cryptography

  • ajax controls not working fine..,when evets not fire for some time...,
    S Shalini_U

    Try ScriptMode="Release" in Script Manager....

    ASP.NET tutorial question

  • SelectedItem Problem in ASP.Net
    S Shalini_U

    The country,state and city are already stored in a database for each user. When the user opens his profile, the state he selected should appear in the text of dropdownlist in page load event

    ASP.NET csharp asp-net help tutorial question

  • SelectedItem Problem in ASP.Net
    S Shalini_U

    S.... Country is in postback only. It is also loading the relevant states and cities.. "liststates.Text=myvalue" Even, this statement also showing correctly.. But the selectedtext is not changing

    ASP.NET csharp asp-net help tutorial question

  • SelectedItem Problem in ASP.Net
    S Shalini_U

    I'm using Multiple Dropdown list in my website... When country dropdownlist is selected, the appropriate states are loaded, When state dropdownlist is selected, the city will be loaded..... Now, the problem is I cannot able to assign selecteditem for states and city.... Country is loaded at the pageload event... States and cities are loaded dynamically, when selecting the country... How to assign selecteditem for states and city??

    ASP.NET csharp asp-net help tutorial question

  • File Upload Control Problem in Google Chrome
    S Shalini_U

    I'm Using File Upload Control in ASP.NET.. The textbox in File upload is not displayed when it is opened by Google Chrome... Other Browsers r displaying properly... :(( Can Anyone tell me the solution?? :-O

    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