Started 2 days, 2 hours ago (2009-11-11 00:31:00)
by muhammedsalimp
Software testing is a wide topic and there are many
types of classification. Main Types are - Functional and Non-Functional Testing. - Back box and white box Testing. - Unit Testing, Integration Testing, System Testing, Regression Testing, Acceptance testing, Alpha testing, Beta testing Etc.. Anyway from a developer point of view, I suggest you to try NUNIT . I beleive it covers all your ...
Started 5 days ago (2009-11-08 02:42:00)
by Mikesdotnetting
You shold be able to find some help looking through some articles: http://www.
google.co.uk/#hl=en&source=hp&q=asp+net +who%27s+online&btnG=Google+Search&meta=&aq=1&oq=a sp+net+who&fp=62f5bb4a6a306904
Started 2 days, 15 hours ago (2009-11-10 11:34:00)
by designerSid
Hi Urby,
The most sensible solution in this case is
jQuery.
Have a look at it: http://docs.jquery.com/Effects/slideDown#speedcall back
Thanks
Started 22 hours, 48 minutes ago (2009-11-12 04:35:27)
by vijayst
Here is some sample code assuming the separator is a space (' ') <div>
<asp:Label ID="lblMinVal" runat="server"></asp:Label>
<asp:Label ID="lblMinTime" runat="server"></asp:Label>
</div>
<div>
<asp:L abel ID="lblMaxVal" runat="server"></asp:Label>
<asp:Label ID="lblMaxTime" runat="server"></asp:Label>
</div>
{
// Get each line in the
text file as a string array
string...
Started 3 days, 16 hours ago (2009-11-09 10:51:43)
by esayas
aspx page <asp:HiddenField ID="HF1" runat="server" Value="88" /> <asp:Button ID="btn1" runat="server" OnClick="bt1_Click" />
code behind protected void bt1_Click(object sender, EventArgs e) { HiddenField hf1 = Page.FindControl("HF1") as HiddenField; string hfValue = hf1.Value; .... }
Started 1 day, 3 hours ago (2009-11-12 00:03:11)
by qwe123kids
Hi,
Put the
Break Point and Check..
and Ur Checking for "Page.IsValid" condition are Statisfying th condition
Started 2 days, 22 hours ago (2009-11-10 04:59:13)
by srinivaskotra
Hi, This links may helps you http://www.dotnetspider.com/resources/27838-How-fi nd-
cube-root-number.aspx http://www.dreamincode.net/forums/showtopic70213.h tm Thanks :)
Started 4 days, 1 hour ago (2009-11-09 01:40:00)
by mrruslanm
At this point im just trying to display converted field.
ex:
text field where i simply type: 50
on click im converting this string into decimal.
then i simply display my result in the label.text
as a result, blank is shown. If i set my variable right before setting it to a converted decimal = 50, 50 displays.
Started 3 days, 20 hours ago (2009-11-09 06:51:00)
by irokhes
Hi, If your are hosting your app on IIS, have you checked if you iis server is running?? http://www.ironspeed.com/designer/4.3.0/webhelp/Pa rt_VI/HTTP_Error_500_Page_Cannot_be_Displayed.htm good luck
Started 1 day, 16 hours ago (2009-11-11 11:05:35)
by Varunrao
Dim FileName As String
Dim output As New DataSet()
Try
output.Tables.Add()
Dim txt() As String = IO.File.ReadAllLines(FileName)
Dim count As Int16 = txt.Count
Dim columns As Short = txt(0).Split(",").Count - 1
For i As
Integer = 0 To columns
output....