No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
I have two NIC Card in CentOS Operating System. Configuration : (Modem)Router IP = 192.168.1.254 [I set modem as bridge mode] eth0 : 192.168.1.2 ------ LAN IP Mask : 255.255.255.0 GW : 192.168.1.2 eth1 : 210.211.251.230 ---- Public ID [Static IP] MASK : 255.255.255.0 GW : 210.251.251.1 I want to …
Hi I am new in Joomla.... i want to add dynamic page in joomla. i want also bind dynamic page in menu..... Please Reply ASAP.......
you need a Hardware cisco router. in this cisco router facility to transfer the network traffic to another switch... with two different ISP you can get... [B]Load Balance[/B] you can combine Two Public IP.
[QUOTE=suvisoya;1588750]hi i have 100 records in my datatable .Here i want to insert these records into SQL without looping . thanks[/QUOTE] For You Have to Use Bulk Query Concept Like Batch Processing.... string qry=""; For(int i=0;i<100;i++) { qry+="insert into tbl(id,name) values (1,'chirag')"; } cmd.CommandType=qry; cmd.executenonQuery();
Hi Friends I Want Exact Connection String For MySQL With ASP .NET. I have Facing This Error : No Such Host Name if Known. Thanks.
Hi Friends I am New in VICIDial Caller For Call Center . I have Voip Details.. How Can I Configure Trunk Carrier in Auto Dialer. Give Me Suggestion Thanks
First Configure your web.config file in Web.config First set compilation element in Debug properties to false Add All Assemblies file in u use in web application add connection string your database in connectionString element. after upload all directory in web root directory. run application in browser if got error that …
you can use UpdatePanel for Ajax Control to Avoid this..... Like [code] <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:DropDownList id="ddlNo" runat="server" AutoPostBack="true"> <asp:ListItem Value="1" Text="1"></asp:ListItem> <asp:ListItem Value="2" Text="2"></asp:ListItem> <asp:ListItem Value="3" Text="3"></asp:ListItem> </asp:DropDownList> </ContentTemplate> </asp:UpdatePanel> [/code] i think this help?
you can't connect godaddy database server b' cz it will security reson thats why. you can use database direct godaddy site through and configure all database service like create table ,store procedure,function view, trigger etc... godaddy will provide conectionstring that you add in you config file... i think this will …
you just apply this code int year=DateTime.now.year; int lastyear=(year-5); ListItem[] li=new ListItem[5]; for(int i=0;i<5;i++) { li[i]=new ListItem(lastyear++); } ddl.DataSource=li; ddl.DataBind(); Apply This logic according your requirement..... I think this help?
u have configure your web.config file in web.config set debug properties to false set customErrors properties to off set database connectionstring in <Connectionstring> element set asselblies to use in your web application after upload file in web root directory open browser and type [url]http://www.domain.com[/url] your default.aspx is run now if …
[QUOTE=zilonox;1209684]First, let me start off by saying I am using ASP.NET 2.0 with VB as the default language using Visual Studio 2005. I have a form that has an asp:panel on it that is seeded with an iniitial control. Through the use of the form, additional controls may be dynamically …
[QUOTE=jellybeannn;1210158][code] protected void currency_txt_TextChanged(object sender, EventArgs e) { amountSymbol.Text = currency_txt.Text; } [/code] I'm trying to change a label according to a TextBox, without a button that has to be pressed?[/QUOTE] you can use onkeypress event of javascript Like <asp:Textbox onkeypress="WriteName(this.id);" id="txtT" runat="server"> <asp:Textbox id="txtTest" runat="server"> function WriteName(id) { document.getElementById('<% …
[QUOTE=jamshed ahmed;1209976][CODE] protected void btnAdd_Click(object sender, EventArgs e) { try { Operations op = new Operations(); if (chkHomePhone.Checked == true) { op.ADD_HOME_PHONE_DETAIL(drpPhoneList.Text, txtCallingFeatures.Text, txtAddOns.Text, drpLDPlan.Text, txtConCharges.Text, txtAcctNo.Text, Convert.ToInt32(TotalRsTaxes.Text), txtDate.Text, txtTime.Text, txtVerifierName.Text, txtAgentName.Text, lblRecordAdded, lblError); } } catch (Exception exe) { lblError.Visible = true; lblError.Text = exe.Message; } public void ADD_HOME_PHONE_DETAIL(string …
The End.
chiragsathit