|
Hi i m working on network system but i have installed .net framwork on my pc.tell me how can i access localhost server which is installed on my pc. I want to make my asp.net project only on my pc while using localhost ..IIS5.0..
What should I do to make project on asp.net with my IIS .while my pc connected to network ..Is there any setting which is seperae to access IIS or Othere server.?
plzz help me i m eger to work on .net.
Life is not easy ,let's make it.
|
|
|
|
|
Just put your web application under the local wwwroot folder. Access it using http://localhost/
And in this case, life is that easy.
If you are running visual studio and you create a new project, then this is how it will work.
|
|
|
|
|
IIS5.0? Why not IIS6.0?
"The key, the whole key, and nothing but the key, so help me Codd"
|
|
|
|
|
Hi
I want to give Microsoft Certified Application Developer (MCAD) exam but i don't have study material please can any one send me links and name of books which i should read . Please reply me
|
|
|
|
|
A GuidLine:
3dbc337b-1df8-41b4-ac28-729b1320bd38
|
|
|
|
|
Thanks for reply
What is that ? Sorry didn't get that
|
|
|
|
|
Regards
Angel
*********************************************
The sooner you fall behind, the longer you have to catch up.
|
|
|
|
|
|
|
Hi Friends,
Can anyone tell me how can we implement spell check in a web application using ASP.Net and C#. My problem is that i have a text area. what all words i enter there should be checked for its correctness.
Thanks in advance.
Vipin
|
|
|
|
|
You might want to check out a couple of third party components[^] out there before deciding to implement one.
|
|
|
|
|
Try searching code project for articles with the keywords "spell check".
Logifusion[^]
|
|
|
|
|
I am trying to integerate my web application with another web application,
how am i gonna get the field values which are sent via silent post technique
by the other web application.
Thanks in advance.
SMI
|
|
|
|
|
|
request.form("fieldname").tostring()
try to be good if you can't be the best
|
|
|
|
|
Hello, good day!
I have a datagrid which have 32 columns that is Quantity, Unit Price and amount. The Quantity and Unit Price which contain data are bind from database. My problem is how do i write a code that calculate the amount of each rows in the datagrid and put it in the Amount column?
(Amount=Quantity * Unit Price)
Anyone can help me to solve this problem? Thanks..
Best Regards,
Pei Sun
|
|
|
|
|
You can get the calculated value while fetching the records itself from the database. Or also you can calculate that in OnItemDataBound event of the datagrid.
Best Regards,
Apurva Kaushal
|
|
|
|
|
If calculate in OnItemDataBound, how to write the code? I try this before but fail to get the data. Can you give me some sample code? Thanks..
Best Regards,
Pei Sun
|
|
|
|
|
here is the sample code which will help you:
public void dg_OnItemDataBound(object sender, DataGridItemEventArgs e)<br />
{<br />
if(e.Item.ItemType==ListItemType.Item || e.Item.ItemType==ListItemType.AlternatingItem)<br />
{<br />
DataRow drv = e.Item.DataItem;<br />
Label lbl = (Label)e.Item.FindControl("lblValue");<br />
lbl.Text = drv["Quantity"].ToString() * drv["Unit Price"].ToString();<br />
DropDownList dd = (DropDownList)e.Item.FindControl("ddl");<br />
string str = "javascript:return ValFunc(" + dd.ClientID.ToString() + ");";<br />
dd.Attributes.Add("onChange",str);<br />
<br />
<br />
}<br />
}
Here label control will be there in your datagrid as template column and will display the calculated value.
Also you have to take care about the casting.
Best Regards,
Apurva Kaushal
|
|
|
|
|
Thanks.. this sample will be helppful to me.. thanks a lot
Best Regards,
Pei Sun
|
|
|
|
|
Best Regards,
Apurva Kaushal
|
|
|
|
|
Hi,
Am developing a utility to read from a .resx file, edit the resource key contents, and then write it back to the .resx file.
Am able to change the file contents using ResxResourceReader() API and then changing the key and value, but am unable to write the tree back to the .resx file.
Any help would be of great help.
|
|
|
|
|
You basically use the ResxResourceReader class to read the resource, and should use the ResxResourceWriter class to edit the contents and overwrite the original file with this object.
|
|
|
|
|
How can i load image in .net 2005?
Scenario.
I have a web.config as:
- authorization with deny users="?"
-
|
|
|
|
|
I know nothing about web.config.
I am doing a web application. I stored my images in a folder which I created in the C:\... from the Solution Explorer window. I then added the existing item.
Finally from the toolbox standard, I added the image control and changed the image url.
Does this work?
i need a tutor
|
|
|
|