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

Akhilesh Yadav

@Akhilesh Yadav
About
Posts
53
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Creating webpart look alike document library
    A Akhilesh Yadav

    Hi guys, we are working on a scenario where in we have to show different views of document library based on some filter parameters (these filter parameters are dynamic in nature) on the default aspx file. The parameters are passed by query strings. After the documents are listed user should be able to work as he/she is working with normal document library. Since we are trying to integrate sharepoint with our application so we are looking for ways to implement our application security on the web part. I tried some tips given on net but all in vain. Now it looks like extending document library may work or if you guys can give some suggestions.

    --Akki

    SharePoint sharepoint database security

  • Writing correct code
    A Akhilesh Yadav

    Thanks i was expecting the same. Is it possible to know how much memory is being consumed or utilized. I mean any tool you know or by writing some code.

    --Akki

    C# css question

  • Writing correct code
    A Akhilesh Yadav

    Hi, I've two code snippets just wanna ask which is the right way of writing and why? Fist snippet -------------- DataGridView grid = new DataGridView() foreach(string colName in ColumnNames) { DataGridViewColumn gridCol = null; if() { gridCol = new DataGridViewColumn(); } else { gridCol = new MyColumn(); } grid.Columns.Add(gridCol); } Second Snippet ---------------- DataGridView grid = new DataGridView() DataGridViewColumn gridCol = null; foreach(string colName in ColumnNames) { if() { gridCol = new DataGridViewColumn(); } else { gridCol = new MyColumn(); } grid.Columns.Add(gridCol); }

    --Akki

    C# css question

  • Catching File Not Found Exception VB.net
    A Akhilesh Yadav

    In C# catch below exception System.IO.FileNotFoundException

    --Akki

    .NET (Core and Framework) csharp help question

  • How to nevigate through all the text of a texbox when it is read only?
    A Akhilesh Yadav

    Text area may be another option

    --Akki

    ASP.NET question sales help tutorial

  • display a string in GridView istead of DB value
    A Akhilesh Yadav

    RowDatabound has two arguments object and events e you can go by e.cells("").value

    ASP.NET database question help tutorial

  • Microsites in ASP.NET
    A Akhilesh Yadav

    Mircosites are nothing but some pages dyanmically created using xsl rendering. But as per ur example these sites which you showed are same simple sites which are shown in main page as an adv. Most of them are nothing more than an enquiry form.

    --Akki

    ASP.NET csharp java asp-net com help

  • How to check null string in java script
    A Akhilesh Yadav

    I've done scripting long back but i think javascript treats null as "null" [string] U need to check these string rather than checking the empty state. Just give a try

    --Akki

    .NET (Core and Framework) java javascript tools help tutorial

  • Need help with .Net security configuration [modified]
    A Akhilesh Yadav

    Check whether "Network Service" account is running in a user account having sufficient permissions.

    --Akki

    .NET (Core and Framework) database csharp sql-server dotnet sysadmin

  • .Net 3.0 installation always fail
    A Akhilesh Yadav

    1. This package is for Windows XP SP2 or only Windows Vista? >> I think there is another SP avialble for using .net 3.0 2. Is it mandatory needed if I want to use Visual Studio 2005 + .Net 3.0 to do C# development? >> No Not at All

    --Akki

    .NET (Core and Framework) csharp visual-studio com help question

  • Loading aspx file in Placeholder
    A Akhilesh Yadav

    Hi All, I'm want to create dynamic page in asp.net using VS2003. For this I created an aspx file with one placeholder. Now I want to load the aspx file dynamcially thru code. Till now I've found Placeholder1.Page.LoadControl("text.aspx") But it is not working. Please help.

    -Akki

    ASP.NET csharp asp-net help

  • Immediate Window
    A Akhilesh Yadav

    Hi All, For point no. 2 I've found the solution. Go to command window and type "immed". this will launch the "immediate window"

    --Akki

    .NET (Core and Framework) debugging help question

  • Immediate Window
    A Akhilesh Yadav

    Hi, I don't whether this fourm is forum is correct to put this kind of questions. I'm new to VS2005 and below are the points i'm stuck now: 1. Where are the dll made for web projects? previously in VS2003 there used to be bin folder to where we used to get "projectname".dll but now I'm not finding the same here. 2. I'm not able to find immediate window VS2005. In VS2003 it used to be at debug-->windows-->immediate window, Is location/name changed or we need to do something else.

    -Akki

    .NET (Core and Framework) debugging help question

  • Creating Excel.
    A Akhilesh Yadav

    Hi All, I'm trying to create excel and open it the same in IE but my requirment is bit different I've to create a dll which will do the creation. Till now i've got code for creating excel from datagrid. Is it possible to create excel at run time and then show the same in IE without using any control?

    cheers, Akhilesh Yadav

    ASP.NET question

  • CodeDom
    A Akhilesh Yadav

    I am finishing up work on a windows service that uses CodeDom to dynamically compile code. The problem I am running into is that the the compile fails with a NativeCompilerReturnValue of 2000. I assume this is probably a security issue, but I don't know where to start looking for a resolution. Running the code as a WinForms app is not an option. Any suggestions would be greatly appreciated. Thanks!

    cheers, Akhilesh Yadav

    Visual Basic help csharp winforms security

  • Property Array
    A Akhilesh Yadav

    Yes you can have .... make return type of property as two dimensional also in set section make parameter(value) of same as return type of property. hope it helps

    cheers, Akhilesh Yadav

    Visual Basic data-structures question

  • can i get the view source at run time [modified]
    A Akhilesh Yadav

    use INet control, I used in VB check the same in DotNet(COM Components). Hope it helps you

    cheers, Akhilesh Yadav

    ASP.NET csharp html asp-net database design

  • How to apply style to controls (urgent)
    A Akhilesh Yadav

    Hi, Your question is not clear, however acc. to how I understood you can go for usercontrols or custom controls

    cheers, Akhilesh Yadav

    ASP.NET css help tutorial

  • rendering the value in radiobuttonlist control
    A Akhilesh Yadav

    try changing your query. B'coz since there is null while you asssing it gives this exception. Do following changes: 1. In your dropdown list give a default which will get selected if there is not selection. 2. Change your query, if query returns null value for 23rd col then change it to the default selection value of dropdown list. for e.g. if it oracle you can change nvl(tbl.colname,0) here 0 is the value of default selection in dropdown list. Hope it helps you

    cheers, Akhilesh Yadav

    Web Development help database design sysadmin

  • ASP and AJAX
    A Akhilesh Yadav

    Use XMLData island for filling text boxes

    cheers, Akhilesh Yadav

    Web Development database performance 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