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
I

indianet

@indianet
About
Posts
59
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • HTML TAGS
    I indianet

    Use HttpUtility.HtmlEncode() or Server.HtmlCode to encode html on the server side

    ASP.NET html question

  • ASP.NET and Excel
    I indianet

    http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757[^]

    ASP.NET help csharp asp-net com design

  • ms sql 2005 connection string and db file upload
    I indianet

    The provider might not have a way or the time to import SQL Express database into SQL Server 2005 Database. The database created by the provider is usually blank and you are required to re-create all the necessary objects through the provided interface

    ASP.NET database csharp asp-net sql-server sysadmin

  • How to GET GridView DataSource value?
    I indianet

    Storing multiple rows or even a single row with considerable no. of columns is going to create an impact on the page's performance.

    ASP.NET tutorial question

  • Any negatives to generating ms excel report on the web?
    I indianet

    http://support.microsoft.com/kb/257757[^]

    ASP.NET question sysadmin help workspace

  • Session Retention using WebRequest + WebResponse
    I indianet

    You must retrieve the CookieContainer of the first response (HttpWebRequest object) and retain the CookieContainer for the subsequent requests

    ASP.NET question sysadmin

  • How to display Hourglass b/w Postbacks
    I indianet

    on the .aspx page. function unLoadPage() { document.body.style.cursor='wait'; } see if this is what you are looking for.

    ASP.NET help tutorial

  • protected function
    I indianet

    AddHandler chk.CheckedChanged, AddressOf OnChangeHandler public sub OnChangeHandler(object sender,EventArgs e) ... .. .. end sub

    ASP.NET tutorial question

  • Runtime Scrollbar in Datagrid
    I indianet

    enclose datagrid tags inside <div style=" OVERFLOW: auto; HEIGHT: 150px"> </div>

    ASP.NET question

  • Active Directory
    I indianet

    Please refer to System.DirectoryServices namespace

    ASP.NET csharp asp-net windows-admin

  • change the font of master page control
    I indianet

    Inside the content page Dim HyperLink1 as HyperLink HyperLink1=CType(Master.FindControl('HyperLink1'),HyperLink) HyperLink1 now contains the reference of HyperLink1 control placed in the master page Use Hyperlink1 to manipulate as you would do on a normal page.

    ASP.NET

  • opening command line from asp.net application
    I indianet

    Process.Start("cmd.exe","path_to_batch_file")

    ASP.NET asp-net csharp help question

  • using process call .vbs to copy file.....
    I indianet

    I would ensure the following calls create COM objects successfully. Set oFSO = CreateObject("Scripting.FileSystemObject") Set oNSO = CreateObject("wscript.Network") I will also check on \\web1\c$ \\web2\d$ access from the production server using the same security context that runs the .vbs script

    ASP.NET help sysadmin csharp windows-admin testing

  • Server Side Localization
    I indianet

    Dim image1 As New ImageButton image1.ID = "btnNota0" Panel1.Controls.Add(m) AddHandler image1.Click, btnNote_Click

    ASP.NET question sysadmin help learning

  • Invalid postback or callback argument
    I indianet

    You can disable post back event validation

    ASP.NET help csharp asp-net sysadmin security

  • Email Error
    I indianet

    Try Dim mailSettings As System.Net.Configuration.MailSettingsSectionGroup = ConfigurationManager.GetSectionGroup("system.net/mailSettings") and remove 32, and 35

    ASP.NET sysadmin hosting data-structures security debugging

  • Alter Tooltip property of TableRow in UserControl
    I indianet

    If you have developed the user control then provide a public property to disable/enable tooltip by using a for each loop that loops through all tablerows and assigns a blank string If you didn't develop, see whether the table is exposed as a property and manipulate it using server side code

    ASP.NET javascript help question

  • How can access SESSION variables from ASP.NET into Macromedia Flash 8.
    I indianet

    You cannot access Session variables directly, however you can make the session data available as GET / POST variables to your flash script.

    ASP.NET csharp asp-net adobe

  • definition of print() function in javscript
    I indianet

    Button1.Attributes.Add("onclick", "javascript:window.print();") If this is what you are asking?

    ASP.NET

  • Best way to maintain web application state?
    I indianet

    For information that needs to tracked across multiple post backs a) Use View State - If the information is tied to a single page & If the information consists of fewer bytes b) Use Profile - If the information represents specific to the logged user on the whole rather than a page or group of page c) Use Session - Information that needs to be tracked for the user, that applies to your application on the whole again use session variables, again you may not want more than few 100 bytes of information as part of session d) Database - If you need to track information for ordering of records and if you have few thousands records always re-request it from the database instead of storing it in session variables e) Cache - If information is common across all connected users.

    ASP.NET question csharp html asp-net
  • Login

  • Don't have an account? Register

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