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
C

chitranjan gohil

@chitranjan gohil
About
Posts
83
Topics
44
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • help with webservice
    C chitranjan gohil

    Hi, i did what u said.it worked.however when i run it, it gave me a 404 file not found exception.what do u think could be the reason.i have kept the .wsdl file on the general server of our company thanx, chitranjan more dash than cash!!!

    ASP.NET question help

  • help calling webservice
    C chitranjan gohil

    i have a webservice running on 1 of my systems.now i want to call this webservice thru an application running on other system.how can this be done? thanx, chitranjan more dash than cash!!!

    ASP.NET help question

  • help with webservice
    C chitranjan gohil

    ok gr8.can u give me a hint as to how to do it. thanx a lot chitranjan more dash than cash!!!

    ASP.NET question help

  • help with webservice
    C chitranjan gohil

    ya i thought of that but actually i want to send a group of images back so i need to find some other way.is there any way of creating an object of a file stored on the file system.Note:- i dont want to get a reference to a file on the file system i want to have a replica of the file so that i can put it on an object array and send it back to the client. regards, chitranjan more dash than cash!!!

    ASP.NET question help

  • help with webservice
    C chitranjan gohil

    Hello, i have made a webservice that has a single function getimages. i want this function to return an image that resides on my system to the client.how do i do it? thanx, chitranjan more dash than cash!!!

    ASP.NET question help

  • registering a class
    C chitranjan gohil

    hello, i have made a class.now i want to register this class as an assembly.my class actually is an extension of radiobutton.i want to use my custom class in a webform.so i want to register it like this <%@ Register TagPrefix="vs" Namespace="ChaxRadioButton" Assembly="online_test"%>.online_test is the name of the project. i tried doing this but it is not working.what to do? thanx, chitranjan more dash than cash!!!

    ASP.NET visual-studio question

  • problem with radio button
    C chitranjan gohil

    is it necessary to use attributes.add("","")?what if the attribute is already there.can i do like attributes("")="" more dash than cash!!!

    ASP.NET html help tutorial question

  • problem with radio button
    C chitranjan gohil

    hello, i want to set the name attribute of radio button in html from the .vb file.is it possible.how to do it? Thanx, chitranjan more dash than cash!!!

    ASP.NET html help tutorial question

  • help with template column in datagrid
    C chitranjan gohil

    Hello, i want to used radio buttons in my template column of datagrid.the problem is i want only 1 radio button to be selected at at time.i.e i want all the radio buttons to be in the same group.this is not happening.so how do i group them. thank you, chitranjan more dash than cash!!!

    ASP.NET help question

  • Security check
    C chitranjan gohil

    Ya.rightly said.thats y i wanted to know the 2 things. more dash than cash!!!

    ASP.NET csharp database sql-server visual-studio sysadmin

  • Security check
    C chitranjan gohil

    Hi i came across this while reading an article.Can some1 tell whats declarative security check and whats imperative security check. You develop a Windows-based application called TestKingSecurity by using Visual Studio .NET and Microsoft SQL Server. The application will perform numerous Assert, Deny, and PermitOnly security operations while it is executing. You must ensure that the application is optimized for fast run-time execution. What should you do? A. Perform declarative security checks. B. Perform imperative security checks. Regards, chitranjan more dash than cash!!!

    ASP.NET csharp database sql-server visual-studio sysadmin

  • web.config error
    C chitranjan gohil

    which information r u talking about logging and how to do it? more dash than cash!!!

    ASP.NET question help tutorial

  • Help Please CSS and user controls in 2.0
    C chitranjan gohil

    it could help if u could copy paste the html code and show it to us.what u r saying is not quite clear. Regards, chitranjan more dash than cash!!!

    ASP.NET csharp css asp-net winforms com

  • web.config error
    C chitranjan gohil

    Hello, One of my web pages shows the web.config error some times.why does this error come and how to solve it? Regards, chitranjan more dash than cash!!!

    ASP.NET question help tutorial

  • How to find the number of rows in a datagrid
    C chitranjan gohil

    here is datagridview1 the name of the datagrid?my datagrid does not have the property displayrowcount at all. more dash than cash!!!

    Visual Basic tutorial question

  • How to find the number of rows in a datagrid
    C chitranjan gohil

    Hello, how can i find out the number of rows in a datagrid. Thanx, chitranjan more dash than cash!!!

    Visual Basic tutorial question

  • Closing a window on click of a button
    C chitranjan gohil

    Ok its fine now.The problem got solved. more dash than cash!!!

    ASP.NET csharp asp-net sysadmin tools question

  • Closing a window on click of a button
    C chitranjan gohil

    Hello, i m using an asp.net button on my page.i have written some code in its button click event.also i want the page to close on click of this button so i have written vbscript for it and associated the function with its click event using attributes.add.but somehow i think that the script is being called first and the code in the click event never gets called.the window gets closed before that only.so how do i do this."Run the asp.net server side code first and then close the page." Thanx, chitranjan more dash than cash!!!

    ASP.NET csharp asp-net sysadmin tools question

  • Problem with crystal reports
    C chitranjan gohil

    Hello, i have created a simple report using visual studio report expert.The schema of the report goes like this.i have selected a single table to be displayed.from this table i have selected just 2 fields.now in the form load event of my webform i have written the following code. Dim objRpt As New CrystalReport1 Dim cnn As New SqlConnection("data source=test-sqlsvr;uid=jts;pwd=jts123;initial catalog=eis") Dim adp As New SqlDataAdapter("select FirstName,LastName from emppersonaldetails where firstname='anil'", cnn) Dim ds As New DataSet adp.Fill(ds) objRpt.SetDatabaseLogon("jts", "jts123", "test-sqlsvr", "EIS") DataGrid1.DataSource = ds DataGrid1.DataBind() objRpt.SetDataSource(ds) CrystalReportViewer1.ReportSource = objRpt now the problem is that my condition as mentioned in the dataadapter does not have any effect on the information shown by the report viewer.it simply shows all the records stored in the table. the data adapter itself contains the correct data.i cross checked it by showing the same data in a datagrid. so whats the problem and how to solve it. Thanx, chitranjan more dash than cash!!!

    ASP.NET csharp database visual-studio xml help

  • Message displaying in Global.asax
    C chitranjan gohil

    Hi, i have written a piece of code in the session end event of global.asax.now i want to display an error msg through that event so what is to be done. Thanx, chitranjan more dash than cash!!!

    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