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
S

ss mmm

@ss mmm
About
Posts
69
Topics
47
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Changing from 3.5 framework to 3.0
    S ss mmm

    I have a project compiled in Framework 3.5[VS 2008]. I cannot deploy it on another server which supports only Framework 3.0. How do I convert my existing application in 3.5 to 3.0? I have not used any specific feature which belongs to 3.5 only. Please help

    Thanks

    ASP.NET question visual-studio sysadmin help

  • Cache or xml file
    S ss mmm

    Is it better to cache a dataset on the webserver OR use a XML file on a server and maintaining a structure in the XML file that we populate accordingly when required The dataset has 10 datatables and the site could have more than 50 users at once instance Is it better to use the XML file stored on a server or Cache the dataset on the webserver considering that the application runs on a web farm I have to cache the dataset for the users to come back again to the same page and enter new values in the dataset ( something like adding stuff to a basket )

    Thanks

    ASP.NET sysadmin xml

  • Which control can I use?
    S ss mmm

    When I click a link, a grid should be visible. Its similar to tab controls but in tab controls the tabs will be horizontal, but I need it to be vertical. Like a tree view, when I click, Link1, underneath, a control will pop up which will have a grid. When I click Link2, another control should open up. Can you suggest me which control I can use for this? I have tried to describe but if not clear, I can try explaining again.

    Thanks

    ASP.NET css data-structures question

  • How to assign DataView to Datatable
    S ss mmm

    I sort the datatable and hence store it in dataview. I use dataView.Sort. GridView.DataSource = SortedDataView; GridView.DataBind(); I get the sorted grid now. When I click edit, the sort goes off. So I try to store it in a cache Cache["AdminGrid"] = SortedDataView; Iam unable to retrieve it into a datatable again. DataTable dtData = (DataTable)Cache["AdminGrid"]; results in an error saying DataView cannot be converted into DataTable. Any help is appreciated.

    Thanks

    C# help css tutorial

  • GridView Sort on each page
    S ss mmm

    I know sorting can be done ascending/descending on a gridview. Can it be done on each page of the grid when paging also is enabled?

    Thanks

    ASP.NET css algorithms question

  • 3.5 to 3.0 Conversion
    S ss mmm

    Thanks

    Thanks

    .NET (Core and Framework) csharp dotnet tutorial question

  • 3.5 to 3.0 Conversion
    S ss mmm

    How to open an application in 3.0 framework? The app is built on VS2008, .net Framework 3.5 platform and now I need to convert it to VS2008 3.0 Framework. How to do that?

    Thanks

    .NET (Core and Framework) csharp dotnet tutorial question

  • Windows Authentication : NT Authority\Anonymous LOGON error
    S ss mmm

    I have a web application which connects to SQL Database to bring the data I have set impersonation to true in the web config <identity impersonate="true" /> I have Integrated Security = SSPI in my connection string I have set authentication mode= windows I have set my IIS to use Integrated Windows Authentication. Anonymous access turned off. Am able to run it on server and it works fine. But when I try accessing from client machine, Login Failed for user 'NT Authority\Anonymous LOGON' error. Any idea? Please help.

    Thanks

    ASP.NET database security help sysadmin windows-admin

  • Web Service Reference
    S ss mmm

    I have to develop a web application from a web site. On the web site, on the App_WebReferences folder, there is a folder ContactComponent and there are 3 wsdl files, First,Second and Third inside that. On the web site, the web service is referenced as ContactComponent.First, ContactComponent.Second and ContactComponent.Third On my web application also, I need to reference the same way. How will I add all the three web services to one reference so that I can call ContactComponent.First ContactComponent.Second ContactComponent.Third

    Thanks

    C# wcf

  • Web application : Classes
    S ss mmm

    That is not possible since ASP.Net folder consists of only App_GlobalResources, localresources, Data, Browsers and Theme. On a web application, am not able to add App_Code. On a web site, as you said, am able to. Where should I drop the global class files on the web application?

    Thanks

    ASP.NET question discussion learning

  • Web application : Classes
    S ss mmm

    When I developed the website, I had put the classes which needs to be accessed throughout the application in App_Code. Now when I develop a web application, I don't see App_Code folder. Am able to drop them in App_GlobalResources folder and it works but I read it is for the global resource files. What is the best practice and where should I drop the class files?

    Thanks

    ASP.NET question discussion learning

  • Http Handler
    S ss mmm

    On my local machine, when I try to access the .doc through browser, it takes me to the Fail.aspx and when I go through the application am able to access. The problem is with dll. On the remote server, I get the error. Please help.

    Thanks

    ASP.NET help csharp com sysadmin windows-admin

  • Http Handler
    S ss mmm

    Sorry, I should have written that the Remote Server has .Net Framework installed and not visual studio.

    Thanks

    ASP.NET help csharp com sysadmin windows-admin

  • Http Handler
    S ss mmm

    My aim is to block the .doc file access through Url. on IIS, I added a mapping to *.doc. This is a remote server that does not have dotnet installed. On my application, I put a class which includes ProcessRequest method. On the web.config, I have added <add verb="*" path="*.doc" type="DocNamespace.DocClass,DocDllName>; <add key="PathToRedirect" value="~/Fail.aspx>; I compiled this class to dll and put it on my bin folder. Error I find is "Could not load file or assembly DocDllNameor one of its dependencies. The system cannot find the file specified." I referred the below http://www.15seconds.com/issue/020417.htm[^] Please help. Thanks

    ASP.NET help csharp com sysadmin windows-admin

  • Windows Authentication Impersonate
    S ss mmm

    After logon in the Master page, am showing tree node using the following. if (HttpContext.Current.User.IsInRole("abc")) { Show tree node } This works fine. I have a Impersonate.aspx page where I make the user enter the user id on the textbox and associate it with Global.asax.cs I have this. public static string CurrentUser { get { if (_currUser == string.Empty) return SignedOnUser; else return _currUser; } set { _currUser = value; } } I have to get the CurrentUser value when I use HttpContext.Current.User.IsInRole() Am I taking the right approach? Please help.

    Thanks

    ASP.NET data-structures security help question

  • App_Code folder not found
    S ss mmm

    There is no App_Code folder when I try to create a new ASP.net folder for my project. Please help me.

    Thanks

    C# csharp asp-net help

  • How to know which tree view node on master page is clicked on the form level
    S ss mmm

    I have a master page and there is a tree view control there and this is one of the treenodes. TreeNode _Del = new TreeNode(); _Del.Text = "Administrator"; _Del.NavigateUrl = "~\\Form1.aspx"; TreeNode _Del1 = new TreeNode(); _Del1.Text = "Manager"; _Del1.NavigateUrl = "~\\Form1.aspx"; There is a Form1 and the form1 has two panels. If treenode corresponding to _Del is clicked, panel1.visible=true, panel2.visible=false and if _Del1 is clicked, panel1.visible=false, panel2.visible=true Question: How do I get which treenode am clicking in the Form1? Is response.redirect querystring the only option? Please help and if the post is not clear, please mention. I can more clearly tell you.

    Thanks

    C# question data-structures help tutorial

  • Validator
    S ss mmm

    This is the validator. * The javascript function is: function ValidateDelegFn() { if((document.getElementById('<%=checkbox1.ClientID%>').checked== false) { return(false);} else {return(true);} } From code behind, addDelegateImageButton.Attributes.Add("onclick", "ValidateDelegFn()"); Still, it gets into addDelegateImageButton_Click(object sender, ImageClickEventArgs e) function. How do I make it get into the addDelegateImageButton_Click function only if ValidateDelegFn returns true? Please help Thanks

    ASP.NET question javascript help

  • Storing the dataset of a gridview
    S ss mmm

    Which is the best method to store the dataset to access on the entire page with protected functions? ViewState, Session or Cache?

    Thanks

    ASP.NET question

  • Access Code behind variable from JavaScript
    S ss mmm

    How to access the Code behind variables from client side(Javascript)? Is there any other way apart from putting it in a hidden variable?

    Thanks

    ASP.NET javascript tutorial 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