my bad.. forgot the forum title :( .. thought about PHP and Java .. apologies
raju melveetilpurayil
Posts
-
Chat Application -
Chat ApplicationKevin Marois wrote:
My usage will NOT be asp.Net
So what language are you going to use?:~
-
Chat ApplicationSignalR
will be a better component for a chat application. I done a real-time time application with SignalR.. Its very interesting :cool: -
FlipKart Api Sample CodeI think there is no api for FlipKart. There is some affiliate program. If you want to know more ask to affiliate@flipkart.com
-
Attach an editor in as aspx pageI am still confused of what the purpose of that textarea. anyway these link may help you to popup and editor ModalPopup Extender[^] HTMLEditorExtender.aspx[^]
-
Bulk file uplaod from a folderBecause of security issue we don't have any control on accessing files/folders on client system.
-
Attach an editor in as aspx pageIs there any problem for adding Editor instead of textarea?
-
New forumIts cool, new area to get all tech updates. thinking to say good bye to twitter.:cool: usually i got tech update form twitter
void raju();
-
How To Fill gridview textbox by selecting data from gridview Dropdownlisttry like this
//DropDownList inside the gridview
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
//identifying DropDownList
DropDownList gridDropDownList = (DropDownList)sender;
//selecting grid row
GridViewRow gridRow = (GridViewRow)gridDropDownList.NamingContainer;
//setting Index
int selectedIndex = gridRow.DataItemIndex;
//finding textbox in selected gridview row
TextBox textBox = (TextBox)GridView1.Rows[selectedIndex].FindControl("yourTextBoxID");
string selected = gridDropDownList.SelectedValue;
if (textBox != null)
{
textBox.Text = selected;
}
}My Mind is the Devil's Workshop.
-
Google's Honeycomb OSLG is going to introduce new 9in tablet (G Slate) with honeycomb in next month. let wait and see
My Mind is the Devil's Workshop.
-
I saw a sign in a shop window yesterday .....Not Applicable I am not went out yesterday. :)
My Mind is the Devil's Workshop.
-
The 7 Habits of Highly Effective Websites (including code project) !Henry Minute wrote:
you old tart!
4: All are respect each other.
My Mind is the Devil's Workshop.
-
The 7 Habits of Highly Effective Websites (including code project) !Slacker007 wrote:
Take away their points and watch out.
its jealousy ;) :laugh: :laugh:
Slacker007 wrote:
[raju.m][makhaai] wrote: 4: All are respect each other.
this line have some BUG :doh:
Slacker007 wrote:
This is a great site but some of the people here aren't that great.
Now I got the point :thumbsup:
My Mind is the Devil's Workshop.
-
The 7 Habits of Highly Effective Websites (including code project) !rajesh-lal wrote:
Why is code project so popular and not other developer forum websites ?
1: Reputation. 2: Most of the users are very good in technologies. 3: No one here for Point and Rank. 4: All are respect each other. 5: Get instant Replay for problems. 6: No one entertain junk post [ this help self assessment who post questions or answers ]
My Mind is the Devil's Workshop.
-
Bummer....Marcus Kramer wrote:
Maybe tomorrow will be better
Best of luck :thumbsup:
My Mind is the Devil's Workshop.
-
My first post from...yes, phone is good... what about its battery life??
My Mind is the Devil's Workshop.
-
Best tutorials for Windows Phone 7Hello Chris Maunder, Thanks for the mobile zone and Thanks for the Newsletters from CP. I am really happy for this Zone. I am looking for some good development videos and tutorials for Windows Phone 7. Anyway I got all in One.:thumbsup:
My Mind is the Devil's Workshop.
-
draw vertical linethrough CSS you can achieve this, check this link draw a thin vertical line on a page[^]
-
country,State listsathimailin1 wrote:
i need to load all countries,states in a drop down
Where from you want to load? from Database or XML file?? specify your question.
-
AutoComplete Extender in VS 2008Check these links AutoComplete Demonstration[^] AutoComplete From Database[^] Ajax AutoComplete in ASP.NET[^]