Click here to Skip to main content
16,011,608 members
Home / Discussions / C#
   

C#

 
GeneralRe: Creating a web sniffer that will browse and get data from websites Pin
baranils24-May-10 5:32
baranils24-May-10 5:32 
GeneralRe: Creating a web sniffer that will browse and get data from websites Pin
Luc Pattyn24-May-10 6:10
sitebuilderLuc Pattyn24-May-10 6:10 
GeneralRe: Creating a web sniffer that will browse and get data from websites Pin
baranils24-May-10 7:33
baranils24-May-10 7:33 
QuestionMac OS look Pin
Wamuti6-Mar-10 5:45
Wamuti6-Mar-10 5:45 
AnswerRe: Mac OS look Pin
OriginalGriff6-Mar-10 6:18
mveOriginalGriff6-Mar-10 6:18 
GeneralRe: Mac OS look Pin
Wamuti6-Mar-10 6:25
Wamuti6-Mar-10 6:25 
AnswerRe: Mac OS look Pin
Eddy Vluggen6-Mar-10 8:53
professionalEddy Vluggen6-Mar-10 8:53 
Questionrad controls Pin
pokiri6-Mar-10 1:03
pokiri6-Mar-10 1:03 
<%@ Page Language="c#" Inherits="Telerik.ListViewExamplesCSharp.FirstLook.DefaultCS"
CodeFile="DefaultCS.aspx.cs" %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.QuickStart" %>
<%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
<%@ Register TagPrefix="telerik" TagName="Header" Src="~/Common/Header.ascx" %>
<%@ Register TagPrefix="telerik" TagName="HeadTag" Src="~/Common/HeadTag.ascx" %>
<%@ Register TagPrefix="telerik" TagName="Footer" Src="~/Common/Footer.ascx" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<telerik:HeadTag runat="server" ID="Headtag2" />
<style type="text/css">
.rdpWrap .RadInput, .rdpWrap .rdpPagerButton, .rdpWrap .rdpPagerLabel
{
float: left;
}
</style>
</head>
<body class="BODY">
<form runat="server" id="mainForm" method="post">
<div>
<telerik:Header runat="server" ID="Header1" NavigationLanguage="CS" ShowSkinChooser="false"
ShowDbResetTimer="true" />
<!-- content start -->
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadListView1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadListView1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RadListView2">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadListView2" />
<telerik:AjaxUpdatedControl ControlID="lblDescription" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="ddListSort">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadListView1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rblSort">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rblSort" UpdatePanelRenderMode="Inline" />
<telerik:AjaxUpdatedControl ControlID="RadListView1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="CheckBoxList1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="CheckBoxList1" />
<telerik:AjaxUpdatedControl ControlID="RadListView1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
<ClientEvents OnRequestStart="RequestStart" />
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">

<script type="text/javascript">
function RequestStart(sender, eventArgs) {
//disable ajax on update/insert operation to upload the image
if ((eventArgs.get_eventTarget().indexOf("Update") > -1) || (eventArgs.get_eventTarget().indexOf("PerformInsert") > -1)) {
eventArgs.set_enableAjax(false);
}
}
</script>

</telerik:RadCodeBlock>
<qsf:ConfiguratorPanel runat="server" ID="ConfigurationPanel1" Title="Configurator"
Expanded="false">
Use check boxes bellow to customize the RadDataPager control
<asp:CheckBoxList runat="server" ID="CheckBoxList1" AutoPostBack="true" RepeatColumns="2"
RepeatDirection="Vertical" OnSelectedIndexChanged="CheckBoxList1_SelectedIndexChanged"
RepeatLayout="Table" CellSpacing="10">
<asp:ListItem Value="1" Text="FirstPrev button fields" Selected="True"></asp:ListItem>
<asp:ListItem Value="2" Text="Numeric button fields" Selected="True"></asp:ListItem>
<asp:ListItem Value="3" Text="NextLast button fields" Selected="True"></asp:ListItem>
<asp:ListItem Value="4" Text="Page size field" Selected="True"></asp:ListItem>
<asp:ListItem Value="5" Text="Go-to-page field" Selected="True"></asp:ListItem>
<asp:ListItem Value="6" Text="Template field" Selected="True"></asp:ListItem>
</asp:CheckBoxList>
</qsf:ConfiguratorPanel>
<table>
<tr>
<td>
<h3 class="qsfSubtitle">
Editable RadListView with tiled layout</h3>
<telerik:RadListView ID="RadListView1" DataSourceID="SqlDataSource1" runat="server"
ItemPlaceholderID="CustomersContainer" DataKeyNames="CustomerID" AllowPaging="true"
OnItemCommand="RadListView1_ItemCommand">
<LayoutTemplate>
<!-- Set the id of the wrapping container to match the CLIENT ID of the RadListView control to display the ajax loading panel
In case the listview is embedded in another server control, you will need to append the id of that server control -->
<fieldset id="RadListView1">
<legend>Customers</legend>
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<telerik:RadDataPager ID="RadDataPager1" runat="server" PagedControlID="RadListView1"
PageSize="2" Width="780px">
<Fields>
<telerik:RadDataPagerButtonField FieldType="FirstPrev" />
<telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="6" />
<telerik:RadDataPagerButtonField FieldType="NextLast" />
<telerik:RadDataPagerPageSizeField PageSizeText="Page size: " />
<telerik:RadDataPagerGoToPageField CurrentPageText="Page: " TotalPageText="of" SubmitButtonText="Go"
TextBoxWidth="15" />
<telerik:RadDataPagerTemplatePageField>
<PagerTemplate>
<div style="float: right; padding-left: 50px;">
<b>Items
<asp:Label runat="server" ID="CurrentPageLabel" Text="<%# (Container.Owner.TotalRowCount > 0)? Container.Owner.StartRowIndex + 1 : 0%>" />
to
<asp:Label runat="server" ID="TotalPagesLabel" Text="<%# (Container.Owner.TotalRowCount > 0)? Container.Owner.StartRowIndex + Container.Owner.PageSize : 0 %>" />
of
<asp:Label runat="server" ID="TotalItemsLabel" Text="<%# Container.Owner.TotalRowCount%>" />
<br />
</b>
</div>
</PagerTemplate>
</telerik:RadDataPagerTemplatePageField>
</Fields>
</telerik:RadDataPager>
</td>
</tr>
</table>
<asp:PlaceHolder ID="CustomersContainer" runat="server" />
<div style="clear: both" />
<br />
<br />
<table style="width: 100%;">
<tr>
<td style="width: 25%;">
<asp:Button ID="btnInitInsert" runat="server" Text="Insert Customer" OnClick="btnInitInsert_Click" />
</td>
<td style="text-align: right; width: 75%;">
<asp:Label ID="lblSort1" runat="server" Text="Sort by:" Style="padding-right: 5px;" />
<telerik:RadComboBox ID="ddListSort" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddListSort_SelectedIndexChanged">
<Items>
<telerik:RadComboBoxItem Text="-Select field to sort-" Value="" />
<telerik:RadComboBoxItem Text="Company name" Value="CompanyName" />
<telerik:RadComboBoxItem Text="Contact name" Value="ContactName" />
<telerik:RadComboBoxItem Text="Title" Value="ContactTitle" />
<telerik:RadComboBoxItem Text="City" Value="City" />
<telerik:RadComboBoxItem Text="Country" Value="Country" />
<telerik:RadComboBoxItem Text="Clear sort" Value="ClearSort" />
</Items>
</telerik:RadComboBox>
<asp:RadioButtonList RepeatLayout="Flow" RepeatDirection="Horizontal" ID="rblSort"
runat="server" AutoPostBack="true" OnSelectedIndexChanged="rblSort_SelectedIndexChanged">
<asp:ListItem Text="Ascending" Value="ASC" Selected="True" />
<asp:ListItem Text="Descending" Value="DESC" />
</asp:RadioButtonList>
</td>
</tr>
</table>
</fieldset>
</LayoutTemplate>
<ItemTemplate>
<!--The widths/heights of the fieldset/outer tables in the item/edit/insert templates should match to avoid wrapping or visual discrepancies
in the tiles layout-->
<fieldset style="float: left; width: 370px; height: 185px;">
<legend>Company name:
<%# Eval("CompanyName") %></legend>
<table cellpadding="0" cellspacing="0" style="height: 100%;" width="370px">
<tr>
<td>
<table cellpadding="0" cellspacing="0">
<tr>
<td>
<table cellpadding="0" cellspacing="0">
<tr>
<td style="width: 25%">
Name:
</td>
<td style="width: 50%">
<%#Eval("ContactName")%>
</td>
</tr>
<tr>
<td>
Title:
</td>
<td>
<%#Eval("ContactTitle")%>
</td>
</tr>
<tr>
<td>
City:
</td>
<td>
<%# Eval("City")%>
</td>
</tr>
<tr>
<td>
Country:
</td>
<td>
<%# Eval("Country")%>
</td>
</tr>
<tr>
<td>
Phone:
</td>
<td>
<%#Eval("Phone")%>
</td>
</tr>
</table>
</td>
<td align="right" style="width: 30%; padding-left: 10px;">
<telerik:RadBinaryImage ID="RadBinaryImage1" runat="server" AlternateText="Contact Photo"
ToolTip="Contact Photo" Width="90px" Height="110px" ResizeMode="Fit" DataValue='<%# Eval("Photo") %>' />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table style="width: 100%;">
<tr>
<td>
<asp:Button ID="btnEdit" runat="server" Text="Edit" CommandName="Edit" Width="50px" />
</td>
<td style="text-align: right">
<asp:Button ID="btnDelete" runat="server" Text="Delete" CommandName="Delete" Width="50px" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</fieldset>
</ItemTemplate>
<EditItemTemplate>
<!--The widths/heights of the fieldset/outer tables in the item/edit/insert templates should match to avoid wrapping or visual discrepancies
in the tiles layout-->
<fieldset style="float: left; width: 370px; height: 185px;">
<legend>Company name:
<asp:TextBox ID="txtBoxCompanyName" runat="server" Text='<%#Bind("CompanyName")%>' />
<asp:RequiredFieldValidator ID="rvCompanyName" runat="server" ControlToValidate="txtBoxCompanyName"
ErrorMessage="Please enter company name" Display="Dynamic" />
</legend>
<table cellpadding="0" cellspacing="0" style="width: 370px;">
<tr>
<td>
<table cellpadding="0" cellspacing="0">
<tr>
<td>
<table cellpadding="0" cellspacing="2">
<tr>
<td style="width: 25%">
Name:
</td>
<td style="width: 75%">
<asp:TextBox ID="txtBoxName" runat="server" Text='<%#Bind("ContactName")%>' />
<asp:RequiredFieldValidator ID="rvName" runat="server" ControlToValidate="txtBoxName"
ErrorMessage="Please enter name" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
Title:
</td>
<td>
<asp:TextBox ID="txtBoxTitle" runat="server" Text='<%#Bind("ContactTitle")%>' />
<asp:RequiredFieldValidator ID="rvTitle" runat="server" ControlToValidate="txtBoxTitle"
ErrorMessage="Please enter title" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
City:
</td>
<td>
<asp:TextBox ID="txtBoxCity" runat="server" Text='<%#Bind("City")%>' />
<asp:RequiredFieldValidator ID="rvCity" runat="server" ControlToValidate="txtBoxCity"
ErrorMessage="Please enter city" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
Country:
</td>
<td>
<asp:TextBox ID="txtBoxCountry" runat="server" Text='<%#Bind("Country")%>' />
<asp:RequiredFieldValidator ID="rvCountry" runat="server" ControlToValidate="txtBoxCountry"
ErrorMessage="Please enter country" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
Phone:
</td>
<td>
<asp:TextBox ID="txtBoxPhone" runat="server" Text='<%#Bind("Phone")%>' />
<asp:RequiredFieldValidator ID="rvPhone" runat="server" ControlToValidate="txtBoxPhone"
ErrorMessage="Please enter phone" Display="Dynamic" />
</td>
</tr>
</table>
</td>
<td align="right" style="width: 25%; padding-left: 10px;">
<telerik:RadBinaryImage ID="RadBinaryImage1" runat="server" AlternateText="Contact Photo"
ToolTip="Contact Photo" Width="90px" Height="110px" ResizeMode="Fit" DataValue='<%# Eval("Photo") %>' />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2">
<div style="float: left; width: 160px;">
<asp:Button ID="btnUpdate" runat="server" Text="Update" CommandName="Update" />
<asp:Button ID="btnCancel" runat="server" Text="Cancel" CommandName="Cancel" CausesValidation="false" />
</div>
<telerik:RadUpload ID="ruCustomerImage" runat="server" AllowedFileExtensions=".jpg,.jpeg,.gif,.png"
MaxFileSize="1000000" ControlObjectsVisibility="None" InputSize="12" Width="160px"
Style="float: right" />
<div style="clear: both" />
</td>
</tr>
</table>
</fieldset>
</EditItemTemplate>
<InsertItemTemplate>
<!--The widths/heights of the fieldset/outer tables in the item/edit/insert templates should match to avoid wrapping or visual discrepancies
in the tiles layout-->
<fieldset style="float: left; width: 370px; height: 200px;">
<legend>Company name:
<asp:TextBox ID="txtBoxCompanyName" runat="server" />
<asp:RequiredFieldValidator ID="rvCompanyName" runat="server" ControlToValidate="txtBoxCompanyName"
ErrorMessage="Please enter company name" Display="Dynamic" />
</legend>
<table cellpadding="0" cellspacing="0" style="width: 370px;">
<tr>
<td>
<table cellpadding="0" cellspacing="5">
<tr>
<td style="width: 25%">
Name:
</td>
<td style="width: 75%">
<asp:TextBox ID="txtBoxName" runat="server" />
<asp:RequiredFieldValidator ID="rvName" runat="server" ControlToValidate="txtBoxName"
ErrorMessage="Please enter name" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
Title:
</td>
<td>
<asp:TextBox ID="txtBoxTitle" runat="server" />
<asp:RequiredFieldValidator ID="rvTitle" runat="server" ControlToValidate="txtBoxTitle"
ErrorMessage="Please enter title" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
City:
</td>
<td>
<asp:TextBox ID="txtBoxCity" runat="server" />
<asp:RequiredFieldValidator ID="rvCity" runat="server" ControlToValidate="txtBoxCity"
ErrorMessage="Please enter city" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
Country:
</td>
<td>
<asp:TextBox ID="txtBoxCountry" runat="server" />
<asp:RequiredFieldValidator ID="rvCountry" runat="server" ControlToValidate="txtBoxCountry"
ErrorMessage="Please enter country" Display="Dynamic" />
</td>
</tr>
<tr>
<td>
Phone:
</td>
<td>
<asp:TextBox ID="txtBoxPhone" runat="server" />
<asp:RequiredFieldValidator ID="rvPhone" runat="server" ControlToValidate="txtBoxPhone"
ErrorMessage="Please enter phone" Display="Dynamic" />
</td>
</tr>
</table>
</td>
<td align="right" style="width: 25%; padding-left: 10px;">
<telerik:RadBinaryImage ID="RadBinaryImage1" runat="server" AlternateText="No Photo"
ToolTip="No Photo" Width="90px" Height="110px" ResizeMode="Fit" ImageUrl="~/ListView/Examples/FirstLook/Img/EmtpyCategoryImage.jpg" />
</td>
</tr>
<tr>
<td colspan="2">
<div style="float: left; width: 160px;">
<asp:Button ID="btnPerformInsert" runat="server" Text="Insert" CommandName="PerformInsert" />
<asp:Button ID="btnCancel" runat="server" Text="Cancel" CommandName="Cancel" CausesValidation="false" />
</div>
<telerik:RadUpload ID="ruCustomerImage" runat="server" AllowedFileExtensions=".jpg,.jpeg,.gif,.png"
MaxFileSize="1000000" ControlObjectsVisibility="None" InputSize="12" Width="160px"
Style="float: right" />
<div style="clear: both" />
</td>
</tr>
</table>
</fieldset>
</InsertItemTemplate>
<EmptyDataTemplate>
<fieldset style="width: 800px">
<legend>Customers</legend>No records for customers available.
</fieldset>
</EmptyDataTemplate>
</telerik:RadListView>
</td>
</tr>
<tr>
<td>
<h3 class="qsfSubtitle">
Grouped RadListView</h3>
<qsf:InformationBox ID="InfoBox1" runat="server">
Select a category to view its description
</qsf:InformationBox>
<telerik:RadListView ID="RadListView2" DataSourceID="SqlDataSource2" runat="server"
ItemPlaceholderID="CategoriesContainer" GroupPlaceholderID="GroupCategoriesContainer"
GroupItemCount="3" DataKeyNames="CategoryID" OnSelectedIndexChanged="RadListView2_SelectedIndexChanged">
<LayoutTemplate>
<fieldset id="GroupCategoriesContainer" runat="server" />
</LayoutTemplate>
<GroupTemplate>
<fieldset style="float: left;">
<legend>Categories group</legend>
<table>
<tr>
<asp:PlaceHolder ID="CategoriesContainer" runat="server" />
</tr>
</table>
</fieldset>
</GroupTemplate>
<ItemTemplate>
<td>
<asp:LinkButton ID="imgButton" runat="server" CommandName="Select">
<telerik:RadBinaryImage ID="RadBinaryImage1" runat="server" AlternateText="Category Photo"
Style="margin-left: 10px" ToolTip="Category Photo" Width="90px" Height="62px"
BorderColor="White" BorderWidth="2px" ResizeMode="Fit" ImageUrl='<%# string.Format("IMG/{0}.jpg", Eval("CategoryID")) %>' />
</asp:LinkButton>
<br />
<%#Eval("CategoryName")%>
<br />
</td>
</ItemTemplate>
<EmptyItemTemplate>
<td>
<img src="Img/EmtpyCategoryImage.jpg" width="110px" height="62px" alt="No Category to display"
title="No Category to display" />
</td>
</EmptyItemTemplate>
<SelectedItemTemplate>
<td>
<asp:LinkButton ID="imgButton" runat="server" CommandName="Select">
<telerik:RadBinaryImage ID="RadBinaryImage1" runat="server" AlternateText="Category Photo"
Style="margin-left: 10px" ToolTip="Category Photo" Width="90px" Height="62px"
BorderColor="Blue" BorderWidth="2px" ResizeMode="Fit" ImageUrl='<%# string.Format("IMG/{0}.jpg", Eval("CategoryID")) %>' />
</asp:LinkButton>
<br />
<span style="color: blue;">
<%#Eval("CategoryName")%></span>
<br />
</td>
</SelectedItemTemplate>
</telerik:RadListView>
</td>
</tr>
<tr>
<td>
<fieldset>
<legend>Description</legend>
<asp:Label ID="lblDescription" runat="server" />
</fieldset>
</td>
</tr>
</table>
<br />
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:TelerikConnectionString %>"
SelectCommand="SELECT [CustomerID], [CompanyName], [ContactName], [ContactTitle], [City], [Country], [Phone], [Photo] FROM [CustomerPhotos]"
DeleteCommand="DELETE FROM [CustomerPhotos] WHERE [CustomerID] = @CustomerID"
InsertCommand="INSERT INTO [CustomerPhotos] ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [City], [Country], [Phone], [Photo]) VALUES (@CustomerID, @CompanyName, @ContactName, @ContactTitle, @City, @Country, @Phone, @Photo)"
UpdateCommand="UPDATE [CustomerPhotos] SET [CompanyName] = @CompanyName, [ContactName] = @ContactName, [ContactTitle] = @ContactTitle, [City] = @City, [Country] = @Country, [Phone] = @Phone, [Photo] = @Photo WHERE [CustomerID] = @CustomerID"
OnInserting="SqlDataSource1_Inserting" OnUpdating="SqlDataSource1_Updating">
<DeleteParameters>
<asp:Parameter Name="CustomerID" Type="String" />
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="CompanyName" Type="String" />
<asp:Parameter Name="ContactName" Type="String" />
<asp:Parameter Name="ContactTitle" Type="String" />
<asp:Parameter Name="City" Type="String" />
<asp:Parameter Name="Country" Type="String" />
<asp:Parameter Name="Phone" Type="String" />
<asp:Parameter Name="Photo" DbType="Binary" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="CustomerID" Type="String" />
<asp:Parameter Name="CompanyName" Type="String" />
<asp:Parameter Name="ContactName" Type="String" />
<asp:Parameter Name="ContactTitle" Type="String" />
<asp:Parameter Name="City" Type="String" />
<asp:Parameter Name="Country" Type="String" />
<asp:Parameter Name="Phone" Type="String" />
<asp:Parameter Name="Photo" DbType="Binary" />
</InsertParameters>
</asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
ProviderName="System.Data.SqlClient" SelectCommand="SELECT TOP 5 CategoryID, CategoryName, Description, Picture FROM Categories" />
<!-- content end -->
<telerik:Footer runat="server" ID="Footer1"></telerik:Footer>
</div>
</form>
</body>
</html><code></code>
AnswerRe: rad controls Pin
pokiri6-Mar-10 1:17
pokiri6-Mar-10 1:17 
AnswerRe: rad controls Pin
#realJSOP6-Mar-10 1:56
professional#realJSOP6-Mar-10 1:56 
QuestionChecking if string path is valid [modified] Pin
Saksida Bojan6-Mar-10 0:24
Saksida Bojan6-Mar-10 0:24 
AnswerRe: Checking if string path is valid Pin
#realJSOP6-Mar-10 1:01
professional#realJSOP6-Mar-10 1:01 
GeneralRe: Checking if string path is valid Pin
Saksida Bojan6-Mar-10 1:03
Saksida Bojan6-Mar-10 1:03 
GeneralRe: Checking if string path is valid Pin
#realJSOP6-Mar-10 1:55
professional#realJSOP6-Mar-10 1:55 
GeneralRe: Checking if string path is valid Pin
Saksida Bojan6-Mar-10 2:06
Saksida Bojan6-Mar-10 2:06 
GeneralRe: Checking if string path is valid Pin
#realJSOP6-Mar-10 3:45
professional#realJSOP6-Mar-10 3:45 
GeneralRe: Checking if string path is valid Pin
Saksida Bojan6-Mar-10 3:54
Saksida Bojan6-Mar-10 3:54 
AnswerRe: Checking if string path is valid Pin
AspDotNetDev6-Mar-10 2:56
protectorAspDotNetDev6-Mar-10 2:56 
GeneralRe: Checking if string path is valid Pin
Saksida Bojan6-Mar-10 3:17
Saksida Bojan6-Mar-10 3:17 
AnswerRe: Checking if string path is valid Pin
PIEBALDconsult6-Mar-10 3:17
mvePIEBALDconsult6-Mar-10 3:17 
GeneralRe: Checking if string path is valid Pin
Saksida Bojan6-Mar-10 3:31
Saksida Bojan6-Mar-10 3:31 
GeneralRe: Checking if string path is valid Pin
PIEBALDconsult6-Mar-10 16:15
mvePIEBALDconsult6-Mar-10 16:15 
AnswerRe: Checking if string path is valid Pin
Eddy Vluggen6-Mar-10 3:21
professionalEddy Vluggen6-Mar-10 3:21 
GeneralRe: Checking if string path is valid Pin
Saksida Bojan6-Mar-10 3:36
Saksida Bojan6-Mar-10 3:36 
AnswerRe: Checking if string path is valid Pin
Luc Pattyn6-Mar-10 4:30
sitebuilderLuc Pattyn6-Mar-10 4:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.