|
Importing Contacts from Mail Clients in ASP.net
|
|
|
|
|
try to do google once.
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
How we can convert mm/dd/yyyy datetime format into dd/mm/yyyy format without any string manipulation. because here datetime variable is used for billing purpose ?
|
|
|
|
|
you can specify the format in DateTime.ToString()
|
|
|
|
|
In my project i need to fetch the profit in between two dates.
is it possible, when i convert datetime into string..?
|
|
|
|
|
It will be tough then. Use DateTime only.
|
|
|
|
|
|
|
You are in wrong forum. This is ASP.NET forum and your question has nothing to do with ASP.NET.
|
|
|
|
|
wrong place!
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
when i fetch morethan 50 mb size of file, my Internet Explorer redirect in to the default error page why this ?
|
|
|
|
|
Increase timeout limit in web.config. Search for uploading large files using ASP.NET
|
|
|
|
|
I try below code in web.config
< httpRuntime
executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"
/>
Still Error persist ..
|
|
|
|
|
How to impliment a fastest media player in webpage ?
|
|
|
|
|
What do you meant by fastest ?
|
|
|
|
|
faster than Silverchots media player control
|
|
|
|
|
Masood Kochi wrote: Silverchots
What is this ? I haven't heard about it. Do you mean SilverLight ? I have used flash player and it works really well.
|
|
|
|
|
yes, Silver Light ...
is any control more faster than Silver Light media Control
|
|
|
|
|
Hi i am trying to create dynamic controls which is dropdownlist & updatepanels...,
The first dropdown is static based on that event im creating my dynamic controls...,
But iam getting probs in newly created dropdown, if i give its property autopostback=true...,
Then whenever iam selecting that one its getting hide...,
How to solve this this is my code:
public partial class DynamicUpdatepanelswithDropDown : System.Web.UI.Page
{
string strSQLconnection = mysqlconnection;
DataSet ds;
SqlDataAdapter sqldad;
private DropDownList dd1;
private DropDownList dd2;
private DropDownList dd3;
UpdatePanel u1;
UpdatePanel u2;
AsyncPostBackTrigger trigger;
AsyncPostBackTrigger trigger1;
protected void Page_Load(object sender, EventArgs e)
{
u1 = new UpdatePanel();
trigger = new AsyncPostBackTrigger();
trigger.ControlID = DropDownList1.UniqueID;
trigger.EventName = "SelectedIndexChanged";
u1.Triggers.Add(trigger);
Page.Form.Controls.Add(u1);
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if ((DropDownList1.SelectedItem.Text=="One") || (DropDownList1.SelectedItem.Text=="Two" ))
{
dd1 = new DropDownList();
//dd1.AutoPostBack = true;
//dd1.SelectedIndexChanged += new EventHandler(dd1_SelectedIndexChanged);
SqlConnection sqlConnection = new SqlConnection(strSQLconnection);
SqlCommand sqlCommand = new SqlCommand("select * from tbl_Country", sqlConnection);
sqlConnection.Open();
SqlDataReader reader = sqlCommand.ExecuteReader();
dd1.DataSource = reader;
dd1.DataValueField = "CID";
dd1.DataTextField = "CName";
dd1.DataBind();
dd1.Items.Insert(0, "--Select One--");
u1.ContentTemplateContainer.Controls.Add(dd1);
}
else
{
SqlConnection sqlConnection = new SqlConnection(strSQLconnection);
SqlCommand sqlCommand = new SqlCommand("select * from tbl_Country", sqlConnection);
sqlConnection.Open();
SqlDataReader reader = sqlCommand.ExecuteReader();
GridView1.DataSource = reader;
GridView1.DataBind();
u1.ContentTemplateContainer.Controls.Add(GridView1);
}
}
Thanks & Regards,
NeW OnE,
please don't forget to vote on the post
|
|
|
|
|
i developed intra net package, i installed one place, the same should not take copy and installed in another server, How ?
ideas pls.
thanks
|
|
|
|
|
http://www.kn-portal.com/about/media/news/news_archive/
This page is left, the grey is how to create the structure.
Ajax.asp Controls kit?
modified on Monday, June 16, 2008 1:10 AM
|
|
|
|
|
Do you mean the menu on the left?
It is just a list of themed hyperlinks. You could create something similar by looking at the source. (right-click, show source).
Alternatively, you could also use a menu control.
It's in the standard toolkit within Visual Studio.
JimBob SquarePants
*******************************************************************
"He took everything personally, including our royalties!"
David St.Hubbins, Spinal Tap about Ian Faith, their ex-manager
*******************************************************************
|
|
|
|
|
It looks like advert. Never post link. Rather please be precise on asking questions.
♫ 99 little bugs in the code,
99 bugs in the code
We fix a bug, compile it again
101 little bugs in the code ♫
|
|
|
|
|
I have a class library and would like to return the results of a javascript function as a return from a method call.
Is there a way to update a program variable from a javascript so I can pass it as a return from the call?
|
|
|
|
|
You can put a server side hidden field in your page and set it's value rom script, or you can make an AJAX call.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|