Search:

Type: Posts; User: vikasvaidya; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.00 seconds.

  1. Answers
    2
    Views
    3,855

    ASP.NET Re: Columns in a table

    Hi Mohsin,

    here is the maximum information that u can get.

    Maximum Capacity Speicification for SQL Server 2005

    ---V V---
    Vikas Vaidya

    Please mark this post as Thanks if u found it useful
  2. Answers
    9
    Views
    4,899

    ASP.NET Re: asp question

    Hi,

    Difference between Response.Redirect and Server.Transfer are

    1. Response.Redirect is a client side round trip and page History is maintained in case of it while Server.Transfer is a server...
  3. Answers
    1
    Views
    3,503

    ASP.NET Re: Disabling back button

    Hi Manat,

    Either u can simply do that by
    putting it on the page where you dont want it to Go.
    <body onLoad="history.go(+1)">


    ---V V---
    Vikas Vaidya
  4. Answers
    7
    Views
    25,578

    Re: how to make exe file in .net?

    Hi,

    You can get an exe by creating a Windows Application project.

    Just go through Create Project. Choose windows application template.


    ---V V---
    Vikas Vaidya
  5. Answers
    2
    Views
    8,129

    ASP.NET Re: What is the use of Viewstatemac?

    ViewStateMAC property is used for security purpose. It is used to maintain data integrity of viewstate across postbacks.

    Basically it is used to check if user has changed (tempered) the viewState...
  6. Answers
    1
    Views
    2,699

    ASP.NET Re: Crystal Reprot Version in .net 1.1

    For .Net 1.1 Crystal Report version IX is used and
    For .Net 2.0 Crystal Report version X is used

    ---V V---
    Vikas Vaidya

    Please mark this post as Thanks if u found the answer useful
  7. Thread: sqlserver

    by vikasvaidya
    Answers
    3
    Views
    3,951

    SQL Server - Re: sqlserver

    Hi Gopi,

    Its' simple just run the following query

    Select * from sysobjects where xtype='P'


    ---V V---
    Vikas Vaidya
  8. Answers
    2
    Views
    12,471

    Re: gridview help me pls

    For this follow steps below
    1. create a function BindGrid with input param tableName as string
    2. In function BindGrid create a SqlDataAdapter with sql query "Select * from "+ tableName +""
    3....
  9. Answers
    5
    Views
    5,308

    ASP.NET Re: How to start ASP.NET

    Well, I would suggest u to first get some basic knowledge through books and tutorials on internet and start practicing whatever u learn at the same time to create a rock solid foundation.

    Then...
  10. Answers
    1
    Views
    2,814

    ASP.NET Re: Create and Display XML File

    The best solution for this is DataTable

    Here are the solutions explained to your problems

    1. Creating a XML file and appending nodes
    You can use a DataTable object having 4 columns with names...
  11. Answers
    5
    Views
    5,308

    ASP.NET Re: How to start ASP.NET

    Hi Hema,

    You can learn ASP.Net through following options
    1. Through .Net SDK installed on Program Files
    2. Through tutorials on The Official Microsoft ASP.NET Site
    3. Through various starter...
  12. Answers
    16
    Views
    15,147

    ASP.NET Re: Validation Controls in ASP.NET

    Hi Sameer,

    Advantages of using Validation controls

    1. Validation controls automatically uses Client-side validation for IE 4.0 or later
    2. Each of the validation controls is having so many...
  13. Re: how could I group radio buttons in datagrid?

    Hi Prash,

    The basic funda to group radio buttons is to ensure that all should have same GroupName property.

    For this u can choose following options
    1. Find RadioButton controls in Grid by...
  14. Answers
    4
    Views
    5,166

    ASP.NET Re: GirdView in .ascx page(User Control)

    Yes of course, whatever is acted in response to an event that is basically a subroutine if u check it sharply. Whatever is acted upon an event can be called explicitly.

    So, u can do that...
  15. Answers
    4
    Views
    5,166

    ASP.NET Re: GirdView in .ascx page(User Control)

    Hi,

    You can do that following steps below:

    Create a method in .ascx.cs file with input param as string
    In this method populate grid by using input passed
    From the main file on...
  16. Answers
    10
    Views
    6,748

    ASP.NET Re: Show message on my webpage

    Hi Nidhi,

    As per your quote it seems that u are populating grid with AutoGenerate columns property true.

    In this case u need to add EmptyDataTemplate to grid through code and put your message...
  17. Thread: question

    by vikasvaidya
    Answers
    2
    Views
    3,623

    Re: question

    Hi,

    Deployment is all of the activities that make a software system available for use.

    ---V V---
    Vikas Vaidya

    Please mark this post as thank if u found it useful
  18. Answers
    1
    Views
    5,848

    Re: Checkbox in Datagrid

    Hi,

    For this the best way is to
    1. Set AutoGenerateColumns proeprty of DataGrid to false
    2. Create DateBound columns manually that u want to pupulate from dataset
    3. Create an ItemTemplate...
  19. Answers
    6
    Views
    27,779

    ASP.NET Re: Bind dropdown list to textbox

    Hi Usha,

    Just put the following code in ur Page_Load event and u will get it done.



    DropDownList1.Attributes("onChange") = "TextBox1.value=this.value"

    Don't forget to put the AutoPostBack...
  20. Answers
    4
    Views
    3,823

    SQL Server - Re: Database Access

    hi reddy,

    u can use the following query

    SELECT * FROM [DatabaseName].[OwnerName].[TableName]

    [DatabaseName] - Name of the database in which table exists
    [OwnerName] - Name of the target...
  21. Answers
    4
    Views
    7,222

    ASP.NET Re: Countries Capital DropdownList

    Hi Usha,

    Bind the dropdown list with DataTextField as the countryName and DataValueField as capital

    then in onSelectedIndex_Change event of dropdown write code like
    TextBox1.Text =...
  22. Answers
    3
    Views
    4,373

    SQL Server - Re: How can we create unique key

    u can use the following script

    ALTER TABLE TableName
    ADD CONSTRAINT uk_username UNIQUE KEY (UserName)


    ---V V---
    Vikas Vaidya
  23. Answers
    2
    Views
    4,726

    SQL Server - Re: Revert back previous transaction

    yes nitesh, you can by rollback transaction if have set begin transaction before deleting the records like

    BEGIN TRAN
    Delete from table
    ROLLBACK TRAN

    ---v v---
    Vikas Vaidya
    [please...
  24. Thread: Shared DLL

    by vikasvaidya
    Answers
    4
    Views
    14,456

    Re: Shared DLL

    Hi Kalyan,

    After installing a shared assembly into GAC it is physically stored at "C:\WINDOWS\assembly"



    ---V V---
    Vikas Vaidya

    [Please mark it as thank if u found the answer useful]
  25. Answers
    7
    Views
    17,149

    SQL Server - Re: update to null value column

    Hi Priya,

    We can not use to compare a null value with '=' operator. For this we have to use the 'is' keyword.

    You can use this
    update emp set comm=5000 where email_id is null

    ---V V---...
Results 1 to 25 of 66
Page 1 of 3 1 2 3
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact