iam using Asp.Net 2005professional but can't find how to creat a web-appliction using C# language.......if anybody knows plz tell me ...( the suggestion which works will get full 10 points)
Can anybody plz tell the steps 2 creat a WebApplication using C# in ASP.NET 2005?
I'm assuming you mean that you're using Visual Studio.NET 2005 Professional.
Click on File and then New. Select "Web Site". In the lower left corner, you have the ability to change the language from Visual Basic to C#.
Monday, May 24, 2010
.NET C# Drag and Drop?
Are there some one who has an example of Drag an Drop in a list view (C#)
.NET C# Drag and Drop?
http://www.codeproject.com/cs/miscctrl/d...
.NET C# Drag and Drop?
http://www.codeproject.com/cs/miscctrl/d...
How can i insert and retrive pdf files into sql server database and i am programming with c#.net?
u've to use blob / clob data type for doing so.
and you've to use byte array in c# for uploading or retrieving from database.
try documentation for details. if you could'n find any answer contact me.
How can i insert and retrive pdf files into sql server database and i am programming with c#.net?
Store the names/locations of the files, rather than the filles themselves - this will be very fast.
If you store the files as BLOB's (binary large objects) processing will be slow, and your database will be harder to manage.
wallflower
and you've to use byte array in c# for uploading or retrieving from database.
try documentation for details. if you could'n find any answer contact me.
How can i insert and retrive pdf files into sql server database and i am programming with c#.net?
Store the names/locations of the files, rather than the filles themselves - this will be very fast.
If you store the files as BLOB's (binary large objects) processing will be slow, and your database will be harder to manage.
wallflower
Now i creating new website for discussion forum .give me some idea about how to use c#.net classes in website
The only way to know about c#.net is to either ask a computer person or seach the internet or to refer from a book!
How I can create property or event for a component when I desin it in ControlLibrary (C#.Net)?
you can import the dll from the control library to use the object you created.
Which is the best paid profession in it / computer: 1. networking, 2. unix, 3. oracle 4. c#.net. please help?
please guide for usa job seeker from india
Which is the best paid profession in it / computer: 1. networking, 2. unix, 3. oracle 4. c#.net. please help?
oracle DBAs who are super experienced probably are in the most demand so higher salaries. the networking experts are probably number 2. the key thing is experience...
Which is the best paid profession in it / computer: 1. networking, 2. unix, 3. oracle 4. c#.net. please help?
oracle DBAs who are super experienced probably are in the most demand so higher salaries. the networking experts are probably number 2. the key thing is experience...
Need Help with Loan Calc Logic in C# for ASP.NET 2.0 App?
Hi!
I am coding a ASP.NET 2.0 mortgage calc app and need some help with the C# code required to perform the actual calcs. Here are the specs.
The following data is available:
- Selling price
- Down payment
- Interest rate (value between 0.0 and 1.0)
- Number of years
- Periods per year (12, 24, 52)
- Payment per period
Based on validation groups, I need to calc the following:
1. Payment per period using the following formula
payment = (Principle x Rate) / (1 - (1+Rate)) ^ -period
(or)
"Payment is equal to principle times rate divided by 1 minus (1 plus rate) to the negative period power"
2. Loan amount using the following formula
loanAmount = Payment *(1 - (1 + Rate)^-period)/Rate
(or)
"Loan amount is equal to payment times 1 minus (1 plus rate) to the negative period power divided by rate"
Any help is appreciated!
Need Help with Loan Calc Logic in C# for ASP.NET 2.0 App?
These people might be able to help you..
http://www.bleepingcomputer.com/
They gave me great help.
I hope this helps you.
Good Luck!
hollyhock
I am coding a ASP.NET 2.0 mortgage calc app and need some help with the C# code required to perform the actual calcs. Here are the specs.
The following data is available:
- Selling price
- Down payment
- Interest rate (value between 0.0 and 1.0)
- Number of years
- Periods per year (12, 24, 52)
- Payment per period
Based on validation groups, I need to calc the following:
1. Payment per period using the following formula
payment = (Principle x Rate) / (1 - (1+Rate)) ^ -period
(or)
"Payment is equal to principle times rate divided by 1 minus (1 plus rate) to the negative period power"
2. Loan amount using the following formula
loanAmount = Payment *(1 - (1 + Rate)^-period)/Rate
(or)
"Loan amount is equal to payment times 1 minus (1 plus rate) to the negative period power divided by rate"
Any help is appreciated!
Need Help with Loan Calc Logic in C# for ASP.NET 2.0 App?
These people might be able to help you..
http://www.bleepingcomputer.com/
They gave me great help.
I hope this helps you.
Good Luck!
hollyhock
How to find the data rate/bandwidth of a node in d network..s any code available in c#.net?
If you're using sharepoint:
SPsite. Usageinfo. Bandwidth. ToString()
MSDN KB: SPGlobalAdmin Class
http://msdn2.microsoft.com/en-us/library...
SPsite. Usageinfo. Bandwidth. ToString()
MSDN KB: SPGlobalAdmin Class
http://msdn2.microsoft.com/en-us/library...
How can I Compile C# (CIL) To Native Machine Code to distribute WITHOUT the .NET framework?
I make C# programs in .NET 2.0 and i want to be able to run these programs without the .NET framework. I have heard about using NGEN but i want an executable that can be run on other computers.
How can I Compile C# (CIL) To Native Machine Code to distribute WITHOUT the .NET framework?
http://www.xenocode.com/Products/Postbui...
Its a commercial product.
How can I Compile C# (CIL) To Native Machine Code to distribute WITHOUT the .NET framework?
http://www.xenocode.com/Products/Postbui...
Its a commercial product.
I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
I have written in this way
for(i=0;i%26lt;10;i++)
{
(DataGridView+i).DataSource=Da...
(DataGridView+i).Datamember=Da...
}
But for this iam getting a error .
Pls tell me how to write the code for the following.
I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
Sounds to me like you want a list of DataGridViews, so first you have to create the list.
Note you will need to declare System.Collections.Generic to have access to List.
using System.Collections.Generic;
dataGridViews = new List%26lt;DataGridView%26gt;();
Next you need to populate the list
dataGridVIews.Add( new DataGridView );
then to loop through it, simply do this:
foreach( DataGridView mGrid in dataGridViews )
{
mGrid.DataSource=blah;
mGrid.DataMember=blah;
}
This will loop through all of them in the list. I'm pretty sure you can also use your method and just use dataGridViews[i].DataSource=blah;
Hopefully that accomplishes what you needed.
Reply:for(i=0;i%26lt;10;i++)
{
(DataGridView+i+).DataSource=Da...
(DataGridView+i+).Datamember=Da...
}
The way it was before does not get that i is variable.
Hope this will work.
for(i=0;i%26lt;10;i++)
{
(DataGridView+i).DataSource=Da...
(DataGridView+i).Datamember=Da...
}
But for this iam getting a error .
Pls tell me how to write the code for the following.
I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
Sounds to me like you want a list of DataGridViews, so first you have to create the list.
Note you will need to declare System.Collections.Generic to have access to List.
using System.Collections.Generic;
dataGridViews = new List%26lt;DataGridView%26gt;();
Next you need to populate the list
dataGridVIews.Add( new DataGridView );
then to loop through it, simply do this:
foreach( DataGridView mGrid in dataGridViews )
{
mGrid.DataSource=blah;
mGrid.DataMember=blah;
}
This will loop through all of them in the list. I'm pretty sure you can also use your method and just use dataGridViews[i].DataSource=blah;
Hopefully that accomplishes what you needed.
Reply:for(i=0;i%26lt;10;i++)
{
(DataGridView+i+).DataSource=Da...
(DataGridView+i+).Datamember=Da...
}
The way it was before does not get that i is variable.
Hope this will work.
I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
I have written in this way
for(i=0;i%26lt;10;i++)
{
(datagridview+i).DataSource=DataSet;
(datagridView+i).Datamember=DatsSet.Ta...
}
But for this iam getting a error .
Pls tell me how to write the code for the following.
I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
for(i=0;i%26lt;10;i++)
{
(datagridview + i +).DataSource=Da...
(datagridView + i+ ).Datamember=Da...
}
The problem was taht the gridview is required to be appended.Hope this will work.And if the value of i is appened to the datasourse the way it was before will give error as the compiler does not know that it is the variable.So we require to append it the i have descrided
cabbage
for(i=0;i%26lt;10;i++)
{
(datagridview+i).DataSource=DataSet;
(datagridView+i).Datamember=DatsSet.Ta...
}
But for this iam getting a error .
Pls tell me how to write the code for the following.
I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
for(i=0;i%26lt;10;i++)
{
(datagridview + i +).DataSource=Da...
(datagridView + i+ ).Datamember=Da...
}
The problem was taht the gridview is required to be appended.Hope this will work.And if the value of i is appened to the datasourse the way it was before will give error as the compiler does not know that it is the variable.So we require to append it the i have descrided
cabbage
How can i get programs of c computer language on net?
hi i wanna know that can i get the prorams of data structure in c on the net if u know plz reply imiditaly
How can i get programs of c computer language on net?
you can try
http://homework.teamtutorial.com/
Reply:http://en.wikibooks.org/wiki/Main_Page
its good
Reply:www.cprogramming.com/
www.codeproject.com
www.programmersheaven.com/
Reply:http://www.planet-source-code.com/
How can i get programs of c computer language on net?
you can try
http://homework.teamtutorial.com/
Reply:http://en.wikibooks.org/wiki/Main_Page
its good
Reply:www.cprogramming.com/
www.codeproject.com
www.programmersheaven.com/
Reply:http://www.planet-source-code.com/
How can I pass multiple lines of text from text box to list box using c#.net?
I would like to enter multiple e-mail id's in text box at a time and get it stored in listbox. I also have to void the email_id which is already in the listbox with out entering any duplicates. I am using a button control also i.e., if I enter the value in textbox and press the button I want it to be in list box.
Hope my question is clear!! Can any one help? Thanks in advance
How can I pass multiple lines of text from text box to list box using c#.net?
Basically, you'll need a global array that holds all the values you want stored in the listbox. You'll bind that listbox's values to the array.
Or, if you prefer, you could declare a global DataTable or similar data structure, and store the values for the listbox in that, to make things simpler, if you're more comfortable using ADO.
Your button control will call a function that picks up the global array (or DataTable). It examines all entries in the array (using foreach or a reader or similar) to see if the entry is already in the array.
If not, you'll push the choice onto the end of the array (or add a record to the DataTable), then rebind the listbox with the array (or DataTable).
Reply:check out http://www.pscode.com for great sample codes.
Hope my question is clear!! Can any one help? Thanks in advance
How can I pass multiple lines of text from text box to list box using c#.net?
Basically, you'll need a global array that holds all the values you want stored in the listbox. You'll bind that listbox's values to the array.
Or, if you prefer, you could declare a global DataTable or similar data structure, and store the values for the listbox in that, to make things simpler, if you're more comfortable using ADO.
Your button control will call a function that picks up the global array (or DataTable). It examines all entries in the array (using foreach or a reader or similar) to see if the entry is already in the array.
If not, you'll push the choice onto the end of the array (or add a record to the DataTable), then rebind the listbox with the array (or DataTable).
Reply:check out http://www.pscode.com for great sample codes.
I have done BCA now thinking to do MCA by distance (open uni) with it c# .net am i in right path for IT job?
IGNOU is the open univesity,for better career what should i do.
I have done BCA now thinking to do MCA by distance (open uni) with it c# .net am i in right path for IT job?
Special Education refers to children in school who have special learning needs.
If you are a student, please talk to your school counselor, they can set up a practice interview with you and give you specific advice.
a better category for this question might be the BUSINESS section under CAREERS
I hope this helps you in your job search!
Reply:Yes you are in right path. If you have completed BCA, why don't you start looking for an IT job while studying for MCA by distance education.
In IT Industry experience counts.
I have done BCA now thinking to do MCA by distance (open uni) with it c# .net am i in right path for IT job?
Special Education refers to children in school who have special learning needs.
If you are a student, please talk to your school counselor, they can set up a practice interview with you and give you specific advice.
a better category for this question might be the BUSINESS section under CAREERS
I hope this helps you in your job search!
Reply:Yes you are in right path. If you have completed BCA, why don't you start looking for an IT job while studying for MCA by distance education.
In IT Industry experience counts.
I want to develop a search engine.i do'nt know how to begin.i know programing in java,c,c++,.net.plz.. help
i m a final year IT student.i want to design a search engine.because i m not having anyone to guide me.plzz. help me to do this work
I want to develop a search engine.i do'nt know how to begin.i know programing in java,c,c++,.net.plz.. help
Please take a look at MnoGoSearch. It is free/open source software. So you have freedom to study by using it as the example. ( you can access its source code )
phlox
I want to develop a search engine.i do'nt know how to begin.i know programing in java,c,c++,.net.plz.. help
Please take a look at MnoGoSearch. It is free/open source software. So you have freedom to study by using it as the example. ( you can access its source code )
phlox
Do I need to learn C# or VB.NET before learning ASP.NET?
Can I learn both on the same time? Or should I know some C# or VB.NET first? Thanks
Do I need to learn C# or VB.NET before learning ASP.NET?
Well to learn C# it is required that u test your code. Testing your code will require you to create an application which calls your code. Creating a Web Application to test your C# code will the ultimate solution. You'll be exploring ASP.NET and learning C# at the same time.
Hope this helps.
Reply:You can learn VB or C# concurrently with ASP.NET. ASP.NET is really just an environment for your VB or C# code to run under. The other type of programming typically done with these languages is for the Windows forms environment- the standard windows applications you are used to.
When writing an ASP.NET application, you write the code in VB.NET or C#. That code will (most likely) define the output of HTTP requests from remote clients.
As to whether or not to use VB.NET or C#- the choice is yours. VB has really become a powerful object-oriented language and is very easy to use. I almost exclusively use it, although most of the applications I now write are quick and dirty Intranet applications.
Reply:You need to learn C#
Do I need to learn C# or VB.NET before learning ASP.NET?
Well to learn C# it is required that u test your code. Testing your code will require you to create an application which calls your code. Creating a Web Application to test your C# code will the ultimate solution. You'll be exploring ASP.NET and learning C# at the same time.
Hope this helps.
Reply:You can learn VB or C# concurrently with ASP.NET. ASP.NET is really just an environment for your VB or C# code to run under. The other type of programming typically done with these languages is for the Windows forms environment- the standard windows applications you are used to.
When writing an ASP.NET application, you write the code in VB.NET or C#. That code will (most likely) define the output of HTTP requests from remote clients.
As to whether or not to use VB.NET or C#- the choice is yours. VB has really become a powerful object-oriented language and is very easy to use. I almost exclusively use it, although most of the applications I now write are quick and dirty Intranet applications.
Reply:You need to learn C#
How to maintain the link colors ie selected link color is different from other links in ASP.NET with C#.NET?
U can use "style" attribute in "%26lt;a%26gt;" or use CSS file for this.
in this article describe your answer in "Step 5: Styling the links" Section
http://www.w3.org/Style/Examples/011/fir...
U have to use Css Class name in "style" Property of web control in C#.net
How to maintain the link colors ie selected link color is different from other links in ASP.NET with C#.NET?
Is it really, what computer do you have?
in this article describe your answer in "Step 5: Styling the links" Section
http://www.w3.org/Style/Examples/011/fir...
U have to use Css Class name in "style" Property of web control in C#.net
How to maintain the link colors ie selected link color is different from other links in ASP.NET with C#.NET?
Is it really, what computer do you have?
Does anyone know of a place where i can get the completed work for Microsoft Visual C++ .NET by Don Gosselin?
I bought the book about a month or so ago and I've gotten to about chapter 7 with little problems. I have nothing to compare my work to and would like to know if what I have is similar to what the author meant it to be. My edition did not come with any documentation for the projects or exercises in the book so I have nothing to go by. Any help would be appreciated. Thank you.
Does anyone know of a place where i can get the completed work for Microsoft Visual C++ .NET by Don Gosselin?
Check out Amazon.com. It's listed there.
Does anyone know of a place where i can get the completed work for Microsoft Visual C++ .NET by Don Gosselin?
Check out Amazon.com. It's listed there.
I want some projects ideas of medium complex projects related to graphics, can be developed in C# .Net?
I've done a lot of work in this area. You could make a web application that overlays text onto a bitmap using the System.Drawing.Graphics class. Or you could write a program to parse and render scalable vector graphics ( http://www.w3.org/Graphics/SVG/ )
You could OLE automate a graphics program, like Adobe InDesign, too.
I want some projects ideas of medium complex projects related to graphics, can be developed in C# .Net?
Some fine examples can be found here: http://www.google.com/puzzles/.
Reply:I once created one that scanned paperwork from scanners, and auto cropped them.
The auto cropping was a challenge.
verbena
You could OLE automate a graphics program, like Adobe InDesign, too.
I want some projects ideas of medium complex projects related to graphics, can be developed in C# .Net?
Some fine examples can be found here: http://www.google.com/puzzles/.
Reply:I once created one that scanned paperwork from scanners, and auto cropped them.
The auto cropping was a challenge.
verbena
How to write a c++ console application in .NET?
I want to write a normal C++ program in .net(2003)
How to write a c++ console application in .NET?
1. Click on "New Project" under the "File Menu"
2. Click on "Visual C++ Projects" folder in the "Project Types" listing
3. In the right window, select Win32 Console Project
How to write a c++ console application in .NET?
1. Click on "New Project" under the "File Menu"
2. Click on "Visual C++ Projects" folder in the "Project Types" listing
3. In the right window, select Win32 Console Project
Subscribe to:
Posts (Atom)