|
Sandeep Mewara wrote: Mere naam pe kuch kha/pee lena
Sure
Sandeep Mewara wrote: don't forget to capture the things... atleast virtually we can attend
Sure. My digi cam is on charge
|
|
|
|
|
Will wait for the snaps!
BTW, as you said, posted it[^] right away.
|
|
|
|
|
I Voted and Bookmarked !!
|
|
|
|
|
Hi all,
I am using a windows application.In that i am using a tab control.
My problem is as in web application there is a control multiview in which we can show only one view at a time.Similar to this in tabcontrol in one tabpage i.e., inside of that tabpage i want to use a control like multiview as my application is a windows application.
Thanks in advance.
|
|
|
|
|
You are at worng Place. This forum is for web only. Post in appropriate forum
|
|
|
|
|
Is there any way to pass variables between asp pages other than the query string? something like what i am doing in WinForm:
form1 myform = news form1();
form1.myvar = "abc123";
what i want is to pass the variale but i dont want it to be shown in the url...
|
|
|
|
|
You are asking an awful lot of questions (here and in Database) which with a little bit of research you could answer yourself. The quesiton above is basic HTML stuff.
Enough now. Do some work yourself.
|
|
|
|
|
|
Better to use POST in the form's ACTION property to just pass values from one page to another.
|
|
|
|
|
- Get HTTP POST information from the source page.
- Use session state.
- Create public properties in the source page and access the property values in the target page.
- Get control information in the target page from controls in the source page.
See MSDN[^] for more details on each.
|
|
|
|
|
I want to know how can I determine what was the back page using C#?
|
|
|
|
|
A simple search found this article. It's vb, but that shouldn't be too hard to convert.
Clickey!!!
I wasn't, now I am, then I won't be anymore.
|
|
|
|
|
|
|
Hi
I created website in ASP.NET 2.0 and MYSQL.
MYSQL data base is at remore server. I can connected to MySQL successfully but when I upload my site to Share hosting, it throws following error.
I think ,On my local m/c I have installed MYSQL management tool so I can connect successfully but on shared hosting, it may not so this error is coming,
Any clue how can we enable our remote shared host to connect to MYSQL.
[MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.]
MySql.Data.MySqlClient.NativeDriver.Open() +1142
MySql.Data.MySqlClient.Driver.Open() +69
MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings) +89
MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection() +11
MySql.Data.MySqlClient.MySqlPool.GetPooledConnection() +257
MySql.Data.MySqlClient.MySqlPool.TryToGetDriver() +117
MySql.Data.MySqlClient.MySqlPool.GetConnection() +113
MySql.Data.MySqlClient.MySqlConnection.Open() +309
System.Data.Common.DbDataAdapter.QuietOpen(IDbConnection connection, ConnectionState& originalState) +31
System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +112
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +287
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +92
ASP.test_aspx.getuser() in d:\hosting\5454799\html\Testing\test.aspx:25
ASP.test_aspx.Page_Load(Object sender, EventArgs e) in d:\hosting\5454799\html\Testing\test.aspx:12
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +50
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesA
Bajrang Singh
Using .net 2.0 (VS2005)
|
|
|
|
|
how to determine which update panel cause partial postback if i have 2 or 3 update panel. i want to determine this from javascript and server side also. please help me with sample code.
tbhattacharjee
|
|
|
|
|
THIS[^] article is based on to find out which control made postback to page. You might get some hints out of it.
Regards,
Hiren.
Microsoft Dynamics CRM
"A SQL query goes into a bar, walks up to two tables and asks, "Can I join you?", "yes naturally""
|
|
|
|
|
hi all,
I am having a simple web application.In it there i a link got online payment(a link is for some bank login).After clicking on that link u will be redirected to a some xxx bank.After finishing the successful transaction what will be the process for redirecting to our web application ?
Thanks in advance.
|
|
|
|
|
So far I have found PayPal Sample[^], There's a lot of code written for each step. At last you will find a logic on redirecting back to your webpage after completing transaction. I think There's same idea as in page for all transactional websites.
Regards,
Hiren.
Microsoft Dynamics CRM
"A SQL query goes into a bar, walks up to two tables and asks, "Can I join you?", "yes naturally""
|
|
|
|
|
|
An observation and a bit of a question:
I've got a DropDownList on a web page (C#, but that doesn't matter)
It is set to AutoPostback & ViewState is turned on.
IF there are duplicate Values in the dropdown (not the Text, just the Values), it will NOT maintain its selected index, but rather return from the postback with the first of the duplicate Values selected.
Example: This is what it looks like after a postback from selecting "CHAPLAIN"
<option value="TBD">ACQUIS & MATERIEL MGMT</option>
<option value="xxxxxxHolliT">AMBULATORY CARE</option>
<option value="xxxxxxBrownJ">ANESTHESIOLOGY</option>
<option selected="selected" value="TBD">ASSOC DIR/NURSING SVC</option>
<option value="TBD">ASST DIR/OPERATIONS</option>
<option value="xxxxxxWackeR1">BLIND REHABILITATION SVC</option>
<option value="TBD">CHAPLAIN</option>
<option value="TBD">CHIEF OF STAFF</option>
See what I mean?
Is this a known behavior? Or a bug?
|
|
|
|
|
AFAIK its know behavior. Selected status is stored based on the value not the ordinal, hence the SelectedValue property. With duplicate values it just picks the first one as you can see. It just doesn't make sense to have the same values for multiple items.
I know the language. I've read a book. - _Madmatt
|
|
|
|
|
Mark Nischalke wrote: It just doesn't make sense to have the same values for multiple items.
Sure it does, in circumstances a DropDownList is apparently no good for.
For instance, a list of Names, with their gender in the Value.
It's the other way around that wouldn't make sense. A list of 47 Bobs...you wouldn't know which one to pick even if their Values were different.
But Bob Smith, Bob Dobbs, Bob1 and Bob2 could all be male in Value.
No matter. I found a diffent way of doing what I was doing.
|
|
|
|
|
It simply means you are using the value field for something that it isn't intended to be. The value field meant in theory to be used like the key in a hashlist or the primary key in a table. If you have another value that you'll need, you can always add a custom attribute to each ListItem, but at the end of the day a single-selectable item control should have unique ids for each item...
I wasn't, now I am, then I won't be anymore.
|
|
|
|
|
GenJerDan wrote: For instance, a list of Names, with their gender in the Value.
Then I wouldn't use a DropDownList
I know the language. I've read a book. - _Madmatt
|
|
|
|