Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~860 People Reached
Favorite Tags
Member Avatar for hanusoft

This is an example of Inserting and Retrieving data from xml file. [code]private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { BindGrid(); } } private void BindGrid() { ds = new DataSet(); try { ds.ReadXml(@"c:\inetpub\wwwroot\WebApplication10\XMLFile1.xml"); DataGrid1.DataSource = ds; DataGrid1.DataBind(); } catch(Exception …

Member Avatar for ramkumar8765
0
498
Member Avatar for hanusoft

Any big deal with a firm comes with certain risks. Risks that can be eliminated if the development stages are followed according to a well- designed process model. The risk that reflects immediately is the misunderstanding of the customer’s product requirement. In case of Offshore Software Development also, no risk …

Member Avatar for fuzzyduq
0
129
Member Avatar for hanusoft

The foremost priority for any Outsourcing company is to set an offshore center which has the best of technology and talented manpower to execute software development. In this context, India has established its hold on Offshore Software Outsourcing along with Russia and China. But she has countries like Philippines eyeing …

0
27
Member Avatar for hanusoft

This is an example of editing in DataGrid and Default Paging Html Design Code : - <asp:DataGrid id="DataGrid1" DataKeyField="id" runat="server" Height="224px" AutoGenerateColumns="False" PageSize="5" AllowPaging="True"> <Columns> <asp:BoundColumn Visible="False" DataField="id" HeaderText="Category Id"></asp:BoundColumn> <asp:TemplateColumn HeaderText="Category"> <ItemTemplate> <asp:Label id=lblName text='<%# DataBinder.Eval(Container.DataItem,"name")%>' Runat="server"> </asp:Label> </ItemTemplate> <EditItemTemplate> <asp:TextBox id=txtEdit Runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"name")%>'> </asp:TextBox> </EditItemTemplate> </asp:TemplateColumn> <asp:EditCommandColumn …

0
75
Member Avatar for hanusoft

Here we are uploading images in File System and storing path in the database. Code (ImageUpload.aspx.cs) :- private void Button1_Click(object sender, System.EventArgs e) { // Here I am uploading images in Images folder of C drive. int intResult=0; string strPath = @"c:\Images\"+Path.GetFileName(File1.PostedFile.FileName); SqlConnection con = new SqlConnection("server=.;uid=sa;database=pubs;pwd="); SqlCommand com = …

0
67
Member Avatar for hanusoft

This is an example of Server.Transfer and Context Handler. Through this we can get the multiple values of previous form. http://www.hanusoftware.com In this page we are displaying data from previous form. We can use this technique for multiple form registration form. Code (ContextParent.aspx.cs): - private void Button1_Click(object sender,System.EventArgs e) { …

0
60