Click here to Skip to main content
15,885,546 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Hyperlink not working in Mozilla Pin
PleaseHelpCP16-Apr-09 5:13
PleaseHelpCP16-Apr-09 5:13 
QuestionAJAX ValidatorCalloutExtender Pin
Armandt__16-Apr-09 1:01
Armandt__16-Apr-09 1:01 
Questionstill not work by adding onclick="funtion" Pin
Gaurav Mahajan16-Apr-09 0:51
Gaurav Mahajan16-Apr-09 0:51 
AnswerRe: still not work by adding onclick="funtion" Pin
Abhijit Jana16-Apr-09 0:54
professionalAbhijit Jana16-Apr-09 0:54 
QuestionIncome/expenditure report Pin
billcodes15-Apr-09 23:44
billcodes15-Apr-09 23:44 
AnswerRe: Income/expenditure report Pin
Abhijit Jana16-Apr-09 0:00
professionalAbhijit Jana16-Apr-09 0:00 
AnswerRe: Income/expenditure report Pin
David Mujica16-Apr-09 3:12
David Mujica16-Apr-09 3:12 
QuestionButton Click event not working inside AJAX popupcontrol and UpdatePanel Pin
Gaurav Mahajan15-Apr-09 23:41
Gaurav Mahajan15-Apr-09 23:41 
Hi
I caught in problem since 3 days. Try lot of stuff not able to solve the problem. I developed a form for inventory project - Product.aspx. It has option to add category, subcategory, company on the fly just clicking the add new button. When user press add new, pop appears to ask information and theres save button.

Save button has code to save all data in database tables. But click event do not fire for all these buttons. Look at the form: http://www.artinarts.in/ecomm/admin/product.aspx. Dont know where's the problem.

I read some-where remove all validators and remove un-neccessary updatepanels. I did same but no use. I also read somewhere use aync="true" in page directive. still it not work. I also read that use <triggers> in update panel still not successfull. Please guide me what to do.

My Product.aspx file is as:

<%@ Page Title="" Language="VB" MasterPageFile="MasterPage.master" AutoEventWireup="false" CodeFile="Product.aspx.vb" Inherits="admin_Product" Async="true" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">



<style type="text/css">

.style1

{

width: 105%;
}

.style7

{

width: 89px;
}

.style8

{

width: 279px;height: 30px;
}

.style9

{

width: 304px;height: 30px;
}

.style11

{

width: 123px;
}

.style12

{

height: 30px;
}

.style14

{

width: 304px;
}

.style15

{

width: 279px;
}

</style>
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<br />

<h3 style="font-family:Verdana" id="lblNoProducts">

Add new Product</h3>

<asp:UpdatePanel ID="UpdatePanel1" runat="server">

<ContentTemplate>





<table class="style1">

<tr>

<td valign="top" class="style15">

Category</td>

<td valign="top" class="style14">



<asp:DropDownList ID="lstCategory" runat="server" AutoPostBack="True">

<asp:ListItem>Primary</asp:ListItem>

</asp:DropDownList>



</td>

<td valign="top">

<asp:Button ID="Button1" runat="server" Text="New Category" Height="23px"
Width="121px" UseSubmitBehavior="False" />

<cc1:PopupControlExtender ID="Button1_PopupControlExtender" runat="server"
TargetControlID="Button1" PopupControlID="pnlCategory" Position ="Right"

>

</cc1:PopupControlExtender>

<asp:Panel ID="pnlCategory" Width="396px" Height="59px" runat="server"
BackColor="LightYellow">



Category :

<asp:TextBox ID="txtCategory" runat="server" MaxLength="20"></asp:TextBox>

&nbsp;<asp:Label ID="lblCatError" runat="server" ForeColor="#FF3300"></asp:Label>

<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<asp:Button ID="Button2" runat="server"
Text="Save" OnClick="Button2_Click" />



</asp:Panel>

</td>

</tr>

<tr>

<td class="style15" valign="top">

Sub Category</td>

<td class="style14" valign="top">

<asp:DropDownList ID="lstSubCategory" runat="server">

<asp:ListItem>Primary</asp:ListItem>

</asp:DropDownList>

</td>

<td>

<asp:Button ID="Button3" runat="server" Text="New Sub-category" Height="24px"
Width="122px" UseSubmitBehavior="False" />

<cc1:PopupControlExtender ID="Button3_PopupControlExtender" runat="server"
TargetControlID="Button3" PopupControlID="pnlSubCategory"

Position ="Right">

</cc1:PopupControlExtender>

&nbsp;<asp:Panel ID="pnlSubCategory" Width="440px" Height="82px" runat="server"
BackColor="LightYellow">

<table class="style1">

<tr>

<td class="style7">

Category</td>

<td>

<asp:DropDownList ID="drpCat" runat="server">

</asp:DropDownList>

</td>

</tr>

<tr>

<td class="style7" valign="top">

Sub-Category</td>

<td valign="top">

<asp:TextBox ID="txtSubCat" runat="server" MaxLength="20"></asp:TextBox>

<asp:Label ID="lblSubCatError" runat="server" ForeColor="#FF3300"></asp:Label>

<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<asp:Button ID="Button5" runat="server" Height="23px" Text="Save" />

</td>

</tr>

</table>



</asp:Panel>



</td>

</tr>

<tr>

<td class="style8" valign="top">

Company</td>

<td class="style9" valign="top">

<asp:DropDownList ID="lstCompany" runat="server">

<asp:ListItem>Primary</asp:ListItem>

</asp:DropDownList>

</td>

<td class="style12" valign="top">

<asp:Button ID="Button6" runat="server" Height="23px" Text="New Company"
Width="126px" UseSubmitBehavior="False" />

<cc1:PopupControlExtender ID="Button6_PopupControlExtender" runat="server"
DynamicServicePath="" Enabled="True" ExtenderControlID="" Position ="Right"

TargetControlID="Button6" PopupControlID="pnlCompany">

</cc1:PopupControlExtender>

&nbsp;<asp:Panel ID="pnlCompany" Width="460px" Height="187px" runat="server"
BackColor="LightYellow">



<table class="style1">

<tr>

<td class="style7">

Company</td>

<td class="style11">

<asp:TextBox ID="txtCompany" runat="server" MaxLength="20"></asp:TextBox>

</td>

<td>

<asp:Label ID="lblCompError" runat="server" ForeColor="#FF3300"></asp:Label>

</td>

</tr>

<tr>

<td class="style7">

Address</td>

<td class="style11">

<asp:TextBox ID="txtCAddress" runat="server" MaxLength="50"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style7">

City</td>

<td class="style11">

<asp:TextBox ID="txtCity" runat="server" MaxLength="20"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style7">

State</td>

<td class="style11">

<asp:TextBox ID="txtState" runat="server" MaxLength="20"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style7">

Contact No</td>

<td class="style11">

<asp:TextBox ID="txtContact" runat="server" MaxLength="15"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style7">

Email</td>

<td class="style11">

<asp:TextBox ID="txtEmail" runat="server" MaxLength="25"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

</table>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<asp:Button ID="Button7" runat="server"
Text="Save" Height="24px" Width="58px" />



</asp:Panel>



</td>

</tr>

<tr>

<td class="style15" valign="top">

Price</td>

<td class="style14" valign="top">

<asp:TextBox ID="txtPrice" runat="server" MaxLength="10"></asp:TextBox>

</td>

<td>

&nbsp;Currency:
<asp:DropDownList ID="lstCurrency" runat="server" Font-Size="10pt">

<asp:ListItem>INR</asp:ListItem>

<asp:ListItem>USD</asp:ListItem>

<asp:ListItem>EURO</asp:ListItem>

<asp:ListItem>UK POUND</asp:ListItem>

</asp:DropDownList>

</td>

</tr>

<tr>

<td class="style15" valign="top">

Product</td>

<td class="style14" valign="top">

<asp:TextBox ID="txtProduct" runat="server" MaxLength="70"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style15" valign="top">

Opening Stock</td>

<td class="style14" valign="top">

<asp:TextBox ID="txtOpnStock" runat="server">0</asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style15" valign="top">

Unit of Measurement</td>

<td class="style14" valign="top">

<asp:DropDownList ID="lstUnits" runat="server">

<asp:ListItem>Number</asp:ListItem>

<asp:ListItem>KG</asp:ListItem>

<asp:ListItem>Gram</asp:ListItem>

<asp:ListItem>ML</asp:ListItem>

<asp:ListItem>Litre</asp:ListItem>

<asp:ListItem>Box</asp:ListItem>

</asp:DropDownList>

</td>

<td>

<asp:Button ID="Button10" runat="server" Text="Add New"
UseSubmitBehavior="False" />

<cc1:PopupControlExtender ID="Button10_PopupControlExtender" runat="server"
DynamicServicePath="" Enabled="True" ExtenderControlID=""

TargetControlID="Button10" PopupControlID="pnlUM" Position="Right" >

</cc1:PopupControlExtender>

<asp:Panel ID="pnlUM" Width="460px" Height="57px" runat="server"
BackColor="LightYellow">



Unit:

<asp:TextBox ID="txtUnit" runat="server" MaxLength="10"></asp:TextBox>

&nbsp;<asp:Label ID="lblErrorUnit" runat="server" ForeColor="#FF3300"></asp:Label>

<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;

<asp:Button ID="Button11" runat="server" Text="Save" />



</asp:Panel>



</td>

</tr>

<tr>

<td class="style15" valign="top">

Description</td>

<td class="style14" valign="top">

<asp:TextBox ID="txtDescription" runat="server"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style15" valign="top">

Upload Big Image<br />

(500 X 500 px)</td>

<td class="style14" valign="top">

<asp:FileUpload ID="FileUpload1" runat="server" />

</td>

<td valign="top">

&nbsp;</td>

</tr>

<tr>

<td class="style15" valign="top">

Upload Thumbnail<br />

(100 X 100 px)</td>

<td class="style14" valign="top">

<asp:FileUpload ID="FileUpload2" runat="server" />

</td>

<td valign="top">

&nbsp;</td>

</tr>

<tr>

<td class="style15" valign="top">

Weight</td>

<td class="style14" valign="top">

<asp:TextBox ID="txtWeight" runat="server"></asp:TextBox>

</td>

<td>

&nbsp;</td>

</tr>

<tr>

<td class="style15" valign="top">

Weight-Unit</td>

<td class="style14" valign="top">

<asp:DropDownList ID="lstWgUnit" runat="server">

<asp:ListItem>Number</asp:ListItem>

<asp:ListItem>KG</asp:ListItem>

<asp:ListItem>Gram</asp:ListItem>

<asp:ListItem>ML</asp:ListItem>

<asp:ListItem>Litre</asp:ListItem>

<asp:ListItem>Box</asp:ListItem>

</asp:DropDownList>

</td>

<td>

<asp:Button ID="Button12" runat="server" Text="New Unit"
UseSubmitBehavior="False" />

<cc1:PopupControlExtender ID="Button12_PopupControlExtender" runat="server"
DynamicServicePath="" Enabled="True" ExtenderControlID=""

TargetControlID="Button12" PopupControlID="pnlUMW" >

</cc1:PopupControlExtender>

<asp:Panel ID="pnlUMW" Width="460px" Height="57px" runat="server"
BackColor="LightYellow">

Unit:

<asp:TextBox ID="txtUnitW" runat="server" MaxLength="10"></asp:TextBox>

&nbsp;<asp:Label ID="lblErrorUnitW" runat="server" ForeColor="#FF3300"></asp:Label>

<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;

<asp:Button ID="Button13" runat="server" Text="Save" />



</asp:Panel>



</td>

</tr></table>

<table width="100%">

<tr>

<td class="style15" valign="top">

<asp:LinkButton ID="LinkButton1" runat="server">Show List</asp:LinkButton>

<cc1:PopupControlExtender ID="LinkButton1_PopupControlExtender" runat="server"
DynamicServicePath="" Enabled="True" ExtenderControlID="" Position ="Bottom"

TargetControlID="LinkButton1" PopupControlID="pnlGrid">

</cc1:PopupControlExtender>

<asp:Button ID="Button8" runat="server" Text="Add to List"
ValidationGroup="prd" />

<asp:Panel ID="pnlGrid" runat="server" Height="300" Width="500" BackColor="LightYellow">

<asp:GridView ID="GridView1" runat="server" Width="544px">

<Columns>

<asp:CommandField ShowDeleteButton="True" />

</Columns>

<EmptyDataTemplate>

There is no product in the list at present

</EmptyDataTemplate>

</asp:GridView>

</asp:Panel>

</td>

<td class="style14" valign="top">

&nbsp;</td>

<td>

&nbsp;&nbsp;&nbsp;

</td>

</tr>

</table>

<p>



</p>

<p>No of Products added:
<asp:Label ID="lblNoItems" runat="server" Text="0"></asp:Label>



</p>

<p>

&nbsp;</p>

<p style="text-align: center">

<asp:Button ID="Button9" runat="server" Text="Save All" Width="126px" />



</p>
</ContentTemplate>

<Triggers>
<asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />

<asp:AsyncPostBackTrigger ControlID="Button2" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="Button5" EventName="Click" />

<asp:AsyncPostBackTrigger ControlID="Button7" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="Button13" EventName="Click" />

</Triggers>

</asp:UpdatePanel>

</asp:Content>



Code behind: Product.aspx.vb

Imports System.Data

Imports System.Data.SqlClient

Imports System.Linq

Partial Class admin_Product
Inherits System.Web.UI.Page

Shared productTable As New DataTable("Products")
Shared srNo As Integer = 0

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
On Error Resume Next

If Not IsPostBack Then

productTable.Columns.Add(New DataColumn("SrNo"))
productTable.Columns.Add(New DataColumn("Category"))

productTable.Columns.Add(New DataColumn("SubCategory"))
productTable.Columns.Add(New DataColumn("Company"))

productTable.Columns.Add(New DataColumn("Product"))
productTable.Columns.Add(New DataColumn("OpeningStock"))

productTable.Columns.Add(New DataColumn("UnitsMeasurement"))
productTable.Columns.Add(New DataColumn("Weight"))

productTable.Columns.Add(New DataColumn("WeightUnit"))
productTable.Columns.Add(New DataColumn("Description"))

productTable.Columns.Add(New DataColumn("BigImagePath"))
productTable.Columns.Add(New DataColumn("ThumbnailPath"))

productTable.Columns.Add(New DataColumn("Price"))productTable.Columns.Add(New DataColumn("Currency"))
Category.fillCategories(lstCategory)

Category.fillSubCategories(lstSubCategory, lstCategory.SelectedValue)

Company.fillCompanies(lstCompany)

Category.fillCategories(drpCat)

Product.fillUnits(lstUnits)

Product.fillUnits(lstWgUnit)

End If

End Sub

Protected Sub Button9_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button9.Click
If productTable.Rows.Count >= 1 Then

For i As Integer = 1 To productTable.Rows.Count - 1
If Not Product.save(productTable.Rows(i)("Product").ToString(), _

Company.getID(productTable.Rows(i)("Company").ToString()), _
Category.getID(productTable.Rows(i)("Category").ToString()), _

Category.getSubCatID(productTable.Rows(i)("SubCategory").ToString()), _
productTable.Rows(i)("UnitsMeasurement").ToString(), _

productTable.Rows(i)("Price").ToString(), productTable.Rows(i)("Currency").ToString(), _
productTable.Rows(i)("OpeniningStock").ToString(), _

productTable.Rows(i)("Description").ToString(), _
productTable.Rows(i)("BigImagePath").ToString(), _

productTable.Rows(i)("ThumbnailPath").ToString(), _
productTable.Rows(i)("WeightUnit").ToString(), _

productTable.Rows(i)("Weight").ToString()) Then






End If

Next

End If

End Sub

Protected Sub Button8_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button8.Click
srNo = srNo + 1

Dim dr As DataRow = productTable.NewRow
dr(0) = srNo

dr(1) = lstCategory.SelectedValue

dr(2) = lstSubCategory.SelectedValue

dr(3) = lstCompany.SelectedValue

dr(4) = txtProduct.Text.ToUpper()

dr(5) = txtOpnStock.Text

dr(6) = lstUnits.SelectedValue

dr(7) = txtWeight.Text

dr(8) = lstWgUnit.SelectedValue

dr(9) = txtDescription.Text

dr(10) = FileUpload1.FileName

dr(11) = FileUpload2.FileName

dr(12) = txtPrice.Text

dr(13) = lstCurrency.SelectedValue

productTable.Rows.Add(dr)

GridView1.DataSource = productTable

GridView1.DataBind()

lblNoItems.Text = GridView1.Rows.Count

End Sub

Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim errMessage As String = ""

If Category.Save(txtCategory.Text.ToUpper(), errMessage) Then

Category.fillCategories(lstCategory)

Category.fillCategories(drpCat)

txtCategory.Text = ""

Else

lblCatError.Text = errMessage

End If

End Sub

Protected Sub Button5_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button5.Click
Dim errMessage As String = ""

If Category.SaveSubCategory(drpCat.SelectedValue, txtSubCat.Text.ToUpper(), errMessage) Then

Category.fillSubCategories(lstSubCategory, lstCategory.SelectedValue)

txtSubCat.Text = ""

Else

lblSubCatError.Text = errMessage

End If

End Sub

Protected Sub Button7_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button7.Click
Dim errMessage As String = ""

If Company.Save(txtCompany.Text.ToUpper(), txtCAddress.Text.ToUpper(), txtCity.Text.ToUpper(), txtState.Text.ToUpper(), txtContact.Text.ToUpper(), txtEmail.Text.ToUpper(), errMessage) Then

Company.fillCompanies(lstCompany)

txtCAddress.Text = ""

txtCity.Text = ""

txtContact.Text = ""

txtEmail.Text = ""

txtState.Text = ""

txtCompany.Text = ""

Else

lblCompError.Text = errMessage

End If


End Sub

Protected Sub lstCategory_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles lstCategory.SelectedIndexChanged
Category.fillSubCategories(lstSubCategory, lstCategory.SelectedValue)

End Sub

Protected Sub GridView1_RowDeleting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewDeleteEventArgs) Handles GridView1.RowDeleting
productTable.Rows(e.RowIndex).Delete()

GridView1.DataSource = productTable

GridView1.DataBind()

End Sub

Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.SelectedIndexChanged
End Sub

Protected Sub Button11_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button11.Click
Dim errMessage As String = ""

If Product.SaveUnitMeasure(txtUnit.Text.ToUpper(), errMessage) Then

Product.fillUnits(lstUnits)

Product.fillUnits(lstWgUnit)

txtUnit.Text = ""

Else

lblErrorUnit.Text = errMessage

End If

End Sub

Protected Sub Button13_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button13.Click
Dim errMessage As String = ""

If Product.SaveUnitMeasure(txtUnitW.Text.ToUpper(), errMessage) Then

Product.fillUnits(lstUnits)

Product.fillUnits(lstWgUnit)

txtUnitW.Text = ""

Else

lblErrorUnit.Text = errMessage

End If

End Sub
End Class



Please help me to sort out the issue
AnswerRe: Button Click event not working inside AJAX popupcontrol and UpdatePanel Pin
N a v a n e e t h16-Apr-09 0:05
N a v a n e e t h16-Apr-09 0:05 
GeneralRe: Button Click event not working inside AJAX popupcontrol and UpdatePanel Pin
Gaurav Mahajan16-Apr-09 0:55
Gaurav Mahajan16-Apr-09 0:55 
GeneralRe: Button Click event not working inside AJAX popupcontrol and UpdatePanel Pin
Armandt__16-Apr-09 1:51
Armandt__16-Apr-09 1:51 
Questionloop a 100 time or let SQL server deal with it Pin
ONeil Tomlinson15-Apr-09 23:09
ONeil Tomlinson15-Apr-09 23:09 
AnswerRe: loop a 100 time or let SQL server deal with it Pin
N a v a n e e t h15-Apr-09 23:50
N a v a n e e t h15-Apr-09 23:50 
AnswerRe: loop a 100 time or let SQL server deal with it Pin
Gaurav Mahajan16-Apr-09 1:02
Gaurav Mahajan16-Apr-09 1:02 
AnswerRe: loop a 100 time or let SQL server deal with it Pin
ToddHileHoffer16-Apr-09 6:01
ToddHileHoffer16-Apr-09 6:01 
Questionaceessing controls having same name in server side Pin
rahuluni15-Apr-09 23:08
rahuluni15-Apr-09 23:08 
AnswerRe: aceessing controls having same name in server side Pin
ToddHileHoffer16-Apr-09 6:16
ToddHileHoffer16-Apr-09 6:16 
Questionhow to run source code Pin
anujchetan15-Apr-09 23:06
anujchetan15-Apr-09 23:06 
AnswerRe: how to run source code Pin
Baran M15-Apr-09 23:53
Baran M15-Apr-09 23:53 
AnswerRe: how to run source code Pin
N a v a n e e t h15-Apr-09 23:53
N a v a n e e t h15-Apr-09 23:53 
AnswerRe: how to run source code Pin
Abhijit Jana15-Apr-09 23:56
professionalAbhijit Jana15-Apr-09 23:56 
QuestionWeb service Pin
anandhakrishnan15-Apr-09 23:05
anandhakrishnan15-Apr-09 23:05 
AnswerRe: Web service Pin
Abhijit Jana15-Apr-09 23:49
professionalAbhijit Jana15-Apr-09 23:49 
Questionhow do i put assembly in to gac Pin
nikhil123415-Apr-09 22:38
nikhil123415-Apr-09 22:38 
AnswerRe: how do i put assembly in to gac Pin
Abhijit Jana15-Apr-09 22:48
professionalAbhijit Jana15-Apr-09 22:48 

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.