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

satya chhikara

@satya chhikara
About
Posts
8
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • connect sql server using window authentication in asp.net
    S satya chhikara

    Hi all , I am facing a problem . Please reply me if some one knows about it and mail me at satya_chhikara@centrum.cz .very urgent I made a project for a client. The client has two server one for data base and another for web server(asp.net web site). In data base server regarding their security issues they have window authentication for sql server . Both server are not in same domain and both server have public IP . I have tried the following things 1. Install 2 Windows Server 2003 (With SP1) 2. Install IIS in Webserver and SQL server 2000 with SP4 in DBServer 3. Create a User AlumniASPNET in DB and Web servers (with same password in both servers) 4. Add AlumniASPNET user in IIS_WPG group in Webserver. Configure default application pool to run with AlumniASPNET user identity and configure IIS to run Anonymous user as AlumniASPNET, AlumniASPNET will thereby be a member of the USERS and IIS_WPG groups only 5. Grant access for AlumniASPNET user for the Database, AlumniASPNET will only be a member of the USERS group 6. In web.config, use SSPI authentication and set identity impersonate to true After that I print Error message . It show time out. I guess that It is due to firewall . But they did agree . Now I want to show that I am sending connection request using proper account and password . Can it is possible me to print user name and password when I am sending request to data base server . satya chhikara

    ASP.NET database windows-admin security help csharp

  • Request QueryString Problem??
    S satya chhikara

    You should first encode the name because http always convert special symbol like it convert blank space into + sign and also more . First use server.encode(name) then pass it as query string then in the next page first use name = server.decode(name) If it not work then make own symbol like + to replace blank from querystring and another symbol from the query string and then in the next page replace these symbol again .

    Web Development help com sysadmin tools question

  • Need help with Listboxes/arrays
    S satya chhikara

    Hi , The values from the page automatically delete when page load is executed . You have two options One , set the page Eventwireup ="false" in the html code . Then the control after pressing the button will not goes to page load . the second option is take an hidden variable in html and assigned the values of list box when you are assigning the values to another list box . and take the value from hidden variable and insert , between the values because the array of javascript is not supported by not net . when you need individual vaues use split function in .net . when you are retrving the values from the hidden variable use id of hidden variable .value

    Web Development data-structures help question

  • how to call the calc.exe from c#.net webapp
    S satya chhikara

    there is an static class shell in asp.net . You can use directly by writing shell class and pass the various parameter to it . Shell class provide you the facility to run any command or exe to run on your asp.net code .

    Web Development csharp tutorial question

  • What is means of HTML Driven Database Templete in ASP.Net
    S satya chhikara

    Hi , First you need to create the message object of the Email message . the there will be an option for the text format and html format . Choose the html format and pass the message object in the send method of smtp object .

    ASP.NET database csharp html asp-net question

  • Finding the ideal height for a label
    S satya chhikara

    If you want to use multilpe lines , You can use Height property of label but when you write text in that it will again show one line . Now if you want to show the text in whole label . First go into font properites of label and set size according to your choice .

    .NET (Core and Framework) question

  • Finding the ideal height for a label
    S satya chhikara

    Label in .net are auto resizable by default . It will sized automaticlly according to string whiech you are going to assign it . You don't care about it

    .NET (Core and Framework) question

  • Binding Collection to DataGrid
    S satya chhikara

    Try this sub method using own datagrid name Private Sub DataGrid2_SortCommand(ByVal source As System.Object, ByVal e As System.Web.UI.WebControls.DataGridSortCommandEventArgs) Dim dataGrid As DataGrid = source Dim strSort = dataGrid.Attributes("SortExpression") Dim strASC = dataGrid.Attributes("SortASC") dataGrid.Attributes("SortExpression") = e.SortExpression dataGrid.Attributes("SortASC") = "Yes" If e.SortExpression = strSort Then If strASC = "Yes" Then dataGrid.Attributes("SortASC") = "No" Else dataGrid.Attributes("SortASC") = "Yes" End If End If Dim dt As DataTable = getData() Dim dv As DataView = New DataView(dt) dv.Sort = dataGrid.Attributes("SortExpression") If dataGrid.Attributes("SortASC") = "No" Then dv.Sort &= " DESC" End If dataGrid.CurrentPageIndex = 0 dataGrid.DataSource = dv dataGrid.DataBind() End Sub

    .NET (Core and Framework) wpf wcf algorithms help
  • Login

  • Don't have an account? Register

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